C 编程语言的局限性
问题
与其他编程语言相比,C 编程语言有哪些局限性?
解决方案
与面向对象编程语言相比,C 语言没有或者禁止了继承、多态、封装和数据抽象等概念。
C 编程语言不会检测每一行代码的错误,它会在整个代码完成后检查错误。
它没有命名空间属性。
C 编程的数据抽象能力不够,即没有很大的数据处理能力。
C 语言不允许用户借助异常处理功能检测错误。
C 语言不支持构造函数和析构函数的概念。
它不支持完全解决实际问题。
与其他编程语言相比,它的安全性较低。
基本结构
\“C\”程序的一般结构如下 −
/* documentation section */ preprocessor directives global declaration main ( ){ local declaration executable statements } return type function name (argument list){ local declaration executable statements }
示例
/* Author : Tutorialspoint Aim : Program for finding circumference of circle*/ #include<stdio.h> #include<conio.h> #define PI 3.1415 main ( ){ float c, r; clrscr ( ); printf ("enter radius of circle"); scanf ("%f", &r); c = 2 * PI * r; printf ("Circumference = %f", c); getch ( ); }
输出
Enter radius of circle r=4 Circumference of circle c=25.132000
广告