Differentiate between the expression “++a” and “a++”?
No Answer is Posted For this Question
Be the First to Post Answer
What does static variable mean in c?
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
pgm in c to reverse string by word using array(god is love becomes love is god) (no additional array can used,space is only delimiter between words )
How was c created?
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
There seem to be a few missing operators ..
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is difference between array and pointer in c?
How can I split up a string into whitespace-separated fields?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
Why is c so powerful?
Can a void pointer point to a function?