Introduction to Computer And Programming,I/O Functions,Control Structures in C,Arrays,Pointers,Functions, Strings,Structure and Unions, Preprocessor and Macros, Dynamic Memory Allocations,File Management.
Program : #include void main() { printf("\n size of int is: %d",sizeof(int)); printf("\n size of float is: %d",sizeof(float)); printf("\n size of double is: %d",sizeof(double)); printf("\n size of char is: %d",sizeof(char));
} Note: In borland C or Turbo C compilers size of int is 2.
No comments:
Post a Comment