陈述 C 语言的重要性及其一般结构
C编程是一种通用的、过程的、命令式的计算机编程语言。
C语言的重要性
C被称为健壮的语言,它有很多内置的函数和操作,可以用来编写任何复杂的程序。
通常,我们习惯称C为中级语言。因为,'C'编译器结合了汇编语言的功能和高级语言的功能。因此,最好同时编写系统软件和业务包。
“C”程序高效且快速。
C是高度可移植的,也就是说,在一台计算机上编写的“C”程序可以在另一台计算机上运行,只需很少(或)无需修改。
“C”语言最适合结构化编程,用户可以根据功能模块(或)块来思考问题。
它具有自我扩展的能力。
它被命名为“C”,因为它是BCPL(基本组合编程语言)的后代,BCPL通常被称为“B”语言。
“C”程序的一般形式
C程序的一般形式如下-
/* documentation section */ preprocessor directives global declaration main ( ){ local declaration executable statements } returntype function name (argument list){ local declaration executable statements }
示例
以下是使用没有参数和返回值的函数来执行加法的C程序-
#include输出结果void main(){ //Syntax for addition (function has int because we are returning values for function// int sum(); int add; add = sum(); printf("Addition of two numbers is : %d",add); } int sum(){ //Declaring actual parameters// int a,b,add; //Reading User I/p// printf("Enter a,b :"); scanf("%d,%d",&a,&b); //Addition operation// add=a+b; //Returning value// return add; }
执行上述程序时,会产生以下结果-
Enter a,b :4,6 Addition of two numbers is : 10