home *** CD-ROM | disk | FTP | other *** search
- 'variable name rules
- 'variables
- -DATA TYPES
- Whole number(integer) variables?,6
- int,float,double,char,long,short
- Floating point numbers?,6
- float,int,double,char,long,short
- Doubly accurate floating point numbers?,6
- double,int,float,char,long,short
- Ascii values of characters?,6
- char,int,float,double,long,short
- Long integers?,6
- long,int,float,double,char,short
- Adjective to other types?,6
- short,int,float,double,char,long
- Adjective to other types?,6
- unsigned,int,float,double,char,long
- -TYPE CONVERSION
- char converts to ?,6
- int,short,float,double,char,long
- short converts to ?,6
- int,float,double,char,long,short
- float converts to ?,6
- double,short,int,float,char,long
- -ESCAPE SEQUENCES
- moves to next tab position?,6
- \t,\b,\r,\n,\\,\nn
- backspace?,6
- \b,\t,\r,\n,\\,\nn
- carriage return?,6
- \r,\t,\b,\n,\\,\nn
- carriage return and linefeed?,6
- \n,\t,\b,\r,\\,\nn
- inserts formfeed?,6
- \f,\t,\r,\n,\\,\nn
- prints backslash character?,6
- \\,\r,\n,\",\',\nn
- prints quotation mark?,6
- \",\r,\n,\\,\',\nn
- prints apostrophe mark?,6
- \',\r,\n,\\,\",\nn
- prints octal with value nn?,6
- \nn,\r,\n,\\,\",\'
- -FORMAT SPECIFICATION
- One character?,6
- %c,%d,%f,%o,%x,%u
- integer value?,6
- %d,%c,%f,%o,%x,%u
- string?,6
- %s,%c,%d,%o,%x,%u
- float and double number?,6
- %f,%c,%d,%o,%x,%u
- integer as octal number?,6
- %o,%c,%d,%f,%x,%u
- integer as hex number?,6
- %x,%c,%d,%f,%o,%u
- unsigned integer value?,6
- %u,%c,%d,%f,%o,%x
- float or double output?,6
- %e,%x,%u,%g,%h,%%
- shortest form of e% and f%?,6
- %g,%x,%u,%e,%h,%%
- short(scanf only)?,6
- %h,%x,%u,%e,%g,%%
- prints the %character?,6
- %%,%x,%u,%e,%g,%h
- '#define
- '#include
- -HEXADECIMAL
- -Find the hexadecimal equivalent
- 10?,6
- A,B,C,D,E,F
- 11?,6
- B,A,C,D,E,F
- 12?,6
- C,A,B,D,E,F
- 13?,6
- D,A,B,C,E,F
- 14?,6
- E,A,B,C,D,F
- 15?,6
- F,A,B,C,D,E
- '-ABBREVIATIONS
- 'Increment by 1?
- '*
- 'Decrement by 1?
- 'loops
- -OPERATORS
- Function?,6
- (),[],{},\\,//,<>
- Array?,6
- [],(),{},\\,//,<>
- Structure declaration?,6
- .,*,&,^,%,'
- Forced type conversion?,4
- cast,type,change,alter
- Content of?,6
- *,#,@,@@,&,&&
- Address of?,6
- &,@,a,aa,|,||
- Negative sign?,6
- -,/,\,_,=,ve
- Logical NOT?,6
- !,@,#,%,^,&
- Bitwise complement?,6
- ~,@,!,$,&,*
- Increment?,6
- ++,+,**,^,$,#
- Decrement?,6
- --,-,__,_,&,^
- Storage requirement?,4
- sizeof,mem,cast,extern
- Multiplication?,6
- *,/,%,+,-,++
- Division?,6
- /,*,%,-,--,\
- Remainder(modulo)?,6
- %,M,r,#,&,*
- Addition?,6
- +,++,*,**,a,=
- Subtraction?,6
- -,_,__,--,ve,&
- Shift to right?,6
- >,>=,>.,>-,|,/
- Shift to left?,6
- <,=<,-<,.<,\,|
- Less than?,6
- <,>=,>.,>-,|,/
- Greater than?,6
- >,=<,-<,.<,\,|
- Less than or equal to?,6
- <=,=<,-<,.<,\,|
- Greater than or equal?,6
- >=,>=,>.,>-,|,/
- Equal?,6
- ==,|,&&,||,?:,=
- Unequal?,6
- !=,^,|,&&,||,?:
- Bitwise XOR?,6
- ^,|,&&,||,?:,=
- Bitwise OR?,6
- |,^,&&,||,?:,=
- Logical AND?,6
- &&,^,|,||,?:,=
- Logical OR?,6
- ||,^,|,&&,?:,=
- Conditional evaluation?,6
- ?:,^,|,&&,||,=
- Assignment?,6
- =,^,|,&&,||,?:
- Abbreviated assignment?,6
- #=,^,|,&&,||,?:
- Assignment?,6
- =,^,|,&&,||,?:
- 'initialization
- 'declaration
- 'definition
- 'multiple assignment
- 'functions
- 'without return value
- 'arrays
- 'multi
- 'break
- 'continue
- 'switch/case
- 'address
- 'pointer
- 'auto
- 'static
- 'external
- 'register
- 'local
- -RESERVED WORDS
- Which one is not a reserved word?,6
- printf,auto,break,case,char,continue
- Which one is not a reserved word?,6
- scanf,default,do,double,else,entry
- Which one is not a reserved word?,6
- getchar,enum,extern,float,for,goto
- Which one is not a reserved word?,6
- main,if,int,long,register,while
- Which one is not a reserved word?,6
- define,return,short,sizeof,static,struct
- Which one is not a reserved word?,6
- include,switch,typedef,union,unsigned,void
-
-
-