题解 | #有容乃大#
有容乃大
http://www.nowcoder.com/practice/4712159bbc15417086d40d6c6ff94fee
#include <stdio.h>
int main()
{
//输出
printf("The size of short is %d bytes.\n", sizeof(short));
printf("The size of int is %d bytes.\n", sizeof(int));
printf("The size of long is %d bytes.\n", sizeof(long));
printf("The size of long long is %d bytes.\n", sizeof(long long));
return 0;
}编程初学者入门训练 文章被收录于专栏
针对编程初学者入门训练130题的代码详解专栏,内附注释方便理解,牛客130题的代码均用C语言实现,方便初学者学习。
查看17道真题和解析