What are header files in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different file extensions involved when programming in C?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
Explain what are preprocessor directives?
writw a program to insert an element in the begning of a doubly linked list
What are c identifiers?
How can I list all of the predefined identifiers?
progrem to generate the following series 1 12 123 1234 12345
What is structure pointer in c?
What is the argument of a function in c?
why arithmetic operation can’t be performed on a void pointer?
Is calloc better than malloc?