解释C语言中的不同部分

C 程序由一组协议定义,程序员在编写代码时应遵循这些协议。

部分

完整的程序分为不同的部分,如下所示 -

  • 文档部分- 在这里,我们可以给出有关程序的命令,如作者姓名、创建或修改日期。/* */ 或 // 之间的信息称为注释行。编译器在执行时不会考虑这些行。

  • 链接部分- 在此部分中,包含执行程序所需的头文件。

  • 定义部分- 在这里,定义和初始化变量。

  • 全局声明部分- 在本部分中,定义了可在整个程序中使用的全局变量。

  • 函数原型声明部分- 本部分提供返回类型、参数、函数内部使用的名称等信息。

  • Main function - C 程序将从本节开始编译。通常,它有两个主要部分,称为声明和可执行部分。

  • 用户定义部分- 用户可以定义自己的功能并根据用户的要求执行特定任务。

“C”程序的一般形式

C 程序的一般形式如下 -

/* documentation section */

preprocessor directives

global declaration

main ( ){

   local declaration

   executable statements

}

returntype function name (argument list){

   local declaration

   executable statements

}

示例

以下是使用带参数且不带返回值的函数来执行加法的 C 程序 -

#include<stdio.h>

void main(){

   //Function declaration - (function has void because we are not returning any values for function)//

   void sum(int,int);

   //Declaring actual parameters//

   int a,b;

   //Reading User I/p//

   printf("Enter a,b :");

   scanf("%d,%d",&a,&b);

   //Function calling//

   sum(a,b);

}

void sum(int a, int b){//Declaring formal parameters

   //Declaring variables//

   int add;

   //Addition operation//

   add=a+b;

   //Printing O/p//

   printf("Addition of a and b is %d",add);

}

输出结果

您将看到以下输出 -

Enter a,b :5,6

Addition of a and b is 11

以上是 解释C语言中的不同部分 的全部内容, 来源链接: utcz.com/z/362241.html

回到顶部