Difference between revisions of "C language"
From ScienceZero
m (→Things to remember about the C language if you want to keep sane) |
m (→Things to remember about the C language if you want to keep sane) |
||
Line 51: | Line 51: | ||
& | & | ||
(unsigned int *) | (unsigned int *) | ||
+ | |||
+ | arrays | ||
+ | multiple dimensions | ||
+ | array pointers, 1d, 2d | ||
+ | string, terminating character |
Revision as of 20:07, 22 January 2011
Things to remember about the C language if you want to keep sane
volatile
static
for() direction and signed
switch(var) { case 0: //code break; }
& | ^ ~ >> <<
&& ||
== != > < >= <=
+= -=
- =
/= >>= <<=
data types
subroutines
void
return
pointers
& (unsigned int *)
arrays multiple dimensions array pointers, 1d, 2d string, terminating character