Difference between revisions of "C language"

From ScienceZero
Jump to: navigation, search
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 34: Line 34:
  
 
+=
 
+=
 +
 +
data types
 +
subroutines
 +
void
 +
return
 
-=
 
-=
 
*=
 
*=

Revision as of 20:00, 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 -=

  • =

/= >>= <<=