Introduction of c programming
Introduction ,structure of c program,identifier,rules of identifier in c,keyword, basic data types,variables,numeric variables,character variables,declaration of variables,initializing of variables,constants declaration of constants.
Operator in c programming
Logical operator : logical AND(&&) operator,logical OR(||) operator,logical NOT(!) operator,equality and realtional operator.
Control statement
Types of control statement,decision control statement,iterative statement,jump statement.
Decision control statement : if statement,if else statement,nested if else statement,switch case statement.
Iterative statement(looping): types of iterative statement,while loop statement,for loop statement,do while loop statement.
Jump statement : break statement,example of break statement,continue statement.
Decision control statement : if statement,if else statement,nested if else statement,switch case statement.
Iterative statement(looping): types of iterative statement,while loop statement,for loop statement,do while loop statement.
Jump statement : break statement,example of break statement,continue statement.
Function
Define function, type of function ,library or predefined function,user defined function, function declaration ,element of function declaration, function call ,function definition, categories of function , function with arguments and return value, function with arguments but no return value,function with no arguments but return a value ,function with no argument and no return value,call by value,call by reference,recursion function .
Data types in deep
Data types , primary data types , derived data types , Integer-int,long,short signed,unsigned , concept of signed,unsigned, character in c , ASCII codes , Floating point-float,double,long double .
Format specifier in deep
Define format specifier , %d format specifier , %ld format specifier ,%i format specifier , %u format specifier , %lu format specifier , %hi format specifier ,%hu format specifier , %f format specifier , %lf format specifier , %c format specifier , %s format specifier .
Storage classes
Define storage class ,Default value,scope of variable,life of variable, automatic storage class , register storage class ,static storage class , extern storage class .
0 Comments