12 lines
327 B
C
12 lines
327 B
C
/* print2.c -- 更多printf()的特性 */
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
printf("un = %ld and not %ld\n", 3000000000, 3000000000);
|
|
printf("end = %d and %d\n", 200, 200);
|
|
printf("big = %ld and not %d\n", 65537, 65537);
|
|
printf("verybig = %ld and not %ld\n", 12345678908642, 12345678908642);
|
|
|
|
return 0;
|
|
} |