Answer Posted / reddy
printf("%d");
| Is This Answer Correct ? | 11 Yes | 30 No |
Post New Answer View All Answers
What are types of functions?
What is indirection in c?
What is #define used for in c?
Why static variable is used in c?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What does the c in ctime mean?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is size of union in c?
Define macros.
How would you use the functions fseek(), freed(), fwrite() and ftell()?
Explain heap and queue.
Disadvantages of C language.
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Implement bit Array in C.
Can we increase size of array in c?