Variables are the backbone of C programming, allowing you to manipulate data efficiently and create dynamic, responsive code. Understanding the different types of variables and their scopes is crucial for becoming a proficient C developer. So, go ahead and experiment with these versatile data holders to unlock the full potential of your coding adventures in C
Read More »Data types in C Language
Data types in C: C has different types of data types. The data type is determines how much space is occupied by variable in the storage disk. Mainly there are two types those are Pre- defined and User Defined. Basic data types: These are arithmetic data types Integer, Char, float …
Read More »First C Program
First C Program: First every c program must have one main() function. C program execution always start from main(). Every statement ends with semicolon(;). #include <stdio.h> #include<conio.h> void main() { printf(“Hello, world\n”); getch(); } #include <stdio.h> includes the standard input output library functions. The printf() function was defined in stdio.h file. #include <conio.h> includes …
Read More »What are Reserve Words in C
Tokens in C: A Token is nothing a keyword, identifier, a constant, a string literal, or a symbol. C program have five these tokens. Every line in c program ends with semicolon; it is the terminator of the statement. (Compiler understands statement ends here) printf(“Hai C”); return 0; 2. Keywords: C …
Read More »Features of C language
WHERE is C Used Let us now see how does C compare with other programming languages, All the programming languages can be divided into two categories. I. Problem oriented languages or High level languages; Higher level or problem oriented languages have been designed to give better programming efficiency. Examples of …
Read More »History of C and What is C
About Author Of C: Dennis MacAlistair Ritchie (September 9, 1941 to October 11, 2011) Ritchies full name is Dennis MacAlistair Ritchie. He was born in Bronxville Newyork in the year 1941 september 9. He was an American scientist who created and written C programming language and co developer of Unix …
Read More »