欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C Primer Plus 半抄书式笔记(一)

程序员文章站 2022-06-22 16:26:15
运行结果为: 程序细节: 一、#include 指示和头文件 #include 并不是C的语句。#表示这一行是在编译器接手之前由C预处理器处理的语句。 ......
#include <stdio.h>
int main (void)
{
int num;
num=1;

printf("I am a simple");
printf("computer.\n");
printf("My favorite number is %d because it is first.\n",num);
return 0;
}

 

运行结果为:

I am a simplecomputer.
My favorite number is 1 because it is first.

程序细节:

一、#include <stdio.h> 指示和头文件

#include 并不是C的语句。#表示这一行是在编译器接手之前由C预处理器处理的语句。