What is your favorite subject?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
Is it better to bitshift a value than to multiply by 2?
What does volatile do?
Explain how can I read and write comma-delimited text?
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
how can i get output like this? 1 2 3 4 5 6
List some of the dynamic data structures in C?
What are the languages are portable and platform independent?Why they are like that?
What is a pointer in c plus plus?
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?