What is function and its example?
No Answer is Posted For this Question
Be the First to Post Answer
What is #ifdef ? What is its application?
Why c is faster than c++?
What is integer constants?
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?
What is this pointer in c plus plus?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
We can draw a box in cprogram by using only one printf();& without using graphic.h header file?
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year
What is memory leak in c?
why we use pointer in c
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Why main is not a keyword in c?