Data types in C programm
// data types in c programm
// 1 primary data types in c
// char,int,float,double
// 2 secondary data types in c
// array, pointer, structure etc
// data type of variable
// char (stores the character value)
// int (stores the integer value)
// float (stores the decimal value)
// int %d
// char %c
// string %s
// float %f
Comments
Post a Comment