C programming क्या है
C भाषा एक high-level programming language है, यह एक basics programming language है |
जो Dennis Ritchie ने 1972 में Bell Laboratories (USA) में विकसित की थी।
यह भाषा System Programming और Application Development दोनों के लिए उपयोग की जाती है।
C को “मदर ऑफ प्रोग्रामिंग लैंग्वेजेज़” भी कहा जाता है।
basic program example
#include <stdio.h> // Header file
int main() {
printf(“Hello, World!”); // Output statement
return 0; // End of program
}
Basics of c programming in hindi
- Introduction to C language
- Structure of a C program
- Compiling & running C programs
- Keywords and Identifiers Constants
- Constants, Variables & Data Types
- Input and Output functions
data types or variables
- variable kya hota hai
- data types (int, float, double, char)
- type modifiers
- constants (const keyword)
input or output function
- printf() function
- scanf() function
- Escape Sequences (जैसे \n, \t, आदि)
Basics of C Programming
- Introduction to C language
- Structure of a C program
- Compiling & running C programs
- Keywords and Identifiers Constants
- Constants, Variables & Data Types
- Input and Output functions
Operators & Expressions
- Arithmetic operators
- Relational operators
- Logical operators
- Assignment operators
- Increment and Decrement operators
- Conditional (Ternary) operator
- Bitwise operators
- Operator precedence and associativity