Data types in c language

Data types in c 


1. Introduction


2. List of data types


3. Primitive data types in c


4. Modifiers of data types in c


5. List of modifiers in c


6. Default modifiers of data types in c


7. Default data of modifiers in c


8. Rules of using modifiers in c


9. Possibles modifiers of given data types in c


10. Size modifier in c


11. Size of data types in c


12. Sign modifier in c


13. Range of data types in c


14. Easy way to remember limit of data types in c


15. Const modifiers in c


16. Pointers modifier in c


17. Function modifier in c


18. Interrupt modifier in c


19. Volatile modifier in c


20. Fundamental data types in c


21. Memory representation of char in c


22.  Memory representation of signed char in c


23.  Memory representation of int in c


24. Memory representation of signed int in c


26. Memory representation of double in c

10 comments:

Anonymous said...

please provide matter for the 17,18 and 26 topics

junaid syed said...

please tell me to the point,"what are data types"?

humming bird said...

need morrrrrrrre explanation ......:/

sathya said...

Data types are used to store various types of data..
e.g integer, float
when the type of data you are going to give at run time is integer u declare it as
int i;
in the program

techvark said...

i like this blog....nice help me......

NagadineshK said...

Provide more excercies on Structures and uninons and Enums.

Anonymous said...

if n=1
1
1
if n=2
1
2*2
2*2
1
like this for n=1 to 100

Unknown said...

Mr.Ritesh Kumar,
Could I expect help in the coding of the following program?
1=1
1+2=3
1+2+3=6
1+2+3+4=10
1+2+3+4+...........+n=

Unknown said...

void main()
[
int sum=0,i=1;
clrscr();
printf("enter n value");
scanf("%d",&n);
while(i<=n)
{
sum=sum+i;
i++;
}
printf("%d",sum);
getch();
}

... said...

Nice and very helpful C Programming articles... keep posting...

C pattern programming examples

C Arrays examples

Loops in C examples