Write a program that his output 1 12 123
program to find the second largest word in a paragraph amongst all words that repeat more thn twice
how to print "hai" in c?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
When should we use pointers in a c program?
Why is c called "mother" language?
HOW TO SWAP TWO NOS IN ONE STEP?
Which is the best website to learn c programming?
convert 0.9375 to binary
What is the memory allocated by the following definition ? int (*x)();
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
how to find the sizof of any datatype using bit manipulations