C programming is a general-purpose, procedural, imperative computer programming language. C was initially used for system development work, particularly the programs that make-up the operating system. C was adopted as a system development language because it produces code that runs nearly as fast as the code written in assembly language.
Hello World using C Programming.
#include <stdio.h> int main() { /* my first program in C */ printf("Hello, World! \n"); return 0; }
Points to remember:
- C supports procedural programming paradigm.
- Access specifiers are not supported.
- Functional overloading and virtual functions are not supported.
- Contains 32 reserved keywords.
- Exceptional handling is not supported.
Comments
Post a Comment