Arrays goddem 2:09:00 AM 1 Array is a collection of similar data type items. Arrays are used to store group of data of same datatype. Arrays can of any datatype. Array... NEXT >>
Initialization goddem 2:07:00 AM 0 Initialization means assigning a value to the variable. If variables are not explicitly initialised, then external and static variables are ... NEXT >>
Definition And Declaration goddem 2:05:00 AM 0 Definition is the place where variable is created (allocated storage). Declaration is a place where nature (type) of variable is stated, bu... NEXT >>
Variables and Storage Class goddem 1:55:00 AM 0 auto The default class. Automatic variables are local to their block. Their storage space is reclaimed on exit from the block. register If... NEXT >>
Blocks and Scope goddem 1:54:00 AM 0 C is a block structured language. Blocks are enclosed by { and }. Blocks can be defined wherever a C statement could be used. No semi-colon ... NEXT >>
Standard Header Files goddem 1:49:00 AM 0 standard header files contains Prototypes of the library functions. For example, math.h contains prototypes for mathematical operations. so... NEXT >>
Definition and Declaration goddem 1:45:00 AM 0 A function definition contains function name, parameters, its code and return type and A function declaration contains only name and return ... NEXT >>
Function Basics goddem 1:39:00 AM 1 6.1.1 Building Blocks of Programs Functions like main, printf and scanf, We have already come through. All C programs made up of one or mor... NEXT >>
Break and Continue goddem 1:37:00 AM 0 5.5.1 Break statement Break statement is usually used to terminate a case in the switch statement. Break statement in loops to instantly t... NEXT >>
Local Jumps Goto goddem 1:36:00 AM 0 We can jump to any statement inside the same function using goto. To spot the end point of the jump a label (tag) is used. goto statement is... NEXT >>