In a header file whether functions are declared or defined?
No Answer is Posted For this Question
Be the First to Post Answer
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error
The file stdio.h, what does it contain?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
why we wont use '&' sing in aceesing the string using scanf
what are advantages of U D F?
code for replace tabs with equivalent number of blanks
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
Name the language in which the compiler of "c" in written?
What is meant by operator precedence?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Explain what is the difference between null and nul?