Introduction to C Programming (Lesson)
Introduction to C
Welcome to the Structured Programming course. This lesson covers the absolute basics of C.
What is C?
C is a general-purpose, procedural computer programming language supporting structured programming, lexical variable scope, and recursion, with a static type system.
Key Features
- Efficiency: It is low-level and close to the hardware.
- Portability: Code can be compiled on many different platforms.
- Extensibility: Used to build kernels like Linux.
Your First Program
#include <stdio.h>
int main() {
printf("Hello Sunil's Students!\n");
return 0;
}
Check the Lecture Slides tab above to see the full presentation for this module!