[Plain]
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: write a program to output the length of bytes occupied by various basic types.
* Question:
* Completion date: January 1, April 10, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
Int main ()
{
Printf ("the length of bytes occupied by various basic types on my computer: \ n ");
Printf ("int station Byte Length: % d \ n", sizeof (int ));
Printf ("long Station Byte Length: % d \ n", sizeof (long ));
Printf ("char station Byte Length: % d \ n", sizeof (char ));
Printf ("float station Byte Length: % d \ n", sizeof (float ));
Printf ("double Station Byte Length: % d \ n", sizeof (double ));
Return 0;
}
/* Start the comments in the program header (to avoid any problems encountered during the submission of blog posts, the slash used to indicate that the comments have been deleted)
* Copyright and version Declaration of the program
* All rights reserved.
* File name: txt. c
* Author: liuyongshui
* Question: write a program to output the length of bytes occupied by various basic types.
* Question:
* Completion date: January 1, April 10, 2013
* Version No.: V1.0
*/
# Include <stdio. h>
Int main ()
{
Printf ("the length of bytes occupied by various basic types on my computer: \ n ");
Printf ("int station Byte Length: % d \ n", sizeof (int ));
Printf ("long Station Byte Length: % d \ n", sizeof (long ));
Printf ("char station Byte Length: % d \ n", sizeof (char ));
Printf ("float station Byte Length: % d \ n", sizeof (float ));
Printf ("double Station Byte Length: % d \ n", sizeof (double ));
Return 0;
}