Short Notes on C/C++

C has no subscript checking; if you go to the end of an array, C won't warn you. 2. Variables of different types can be grouped into a . structure. typedef struct ... The str pointer will be advanced a char at a time, the cptrpointer will be decremented a char at a time. */ while(*str !=0){ /* … ................
................