How many identifiers are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain following declaration int *P(void); and int (*p)(char *a);
What is the ANSI C Standard?
What are macros in C?
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
How to print %d in output
What does c mean in basketball?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
how can u print a message without using any library function in c
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
Difference between malloc() and calloc() function?
How can I find out how much free space is available on disk?
What is malloc() function?