What does printf does?
No Answer is Posted For this Question
Be the First to Post Answer
c program to manipulate x=1+3+5+...+n using recursion
What is the restrict keyword in C?
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
What is the explanation for cyclic nature of data types in c?
What is c language & why it is used?
WAP – represent a char in binary format
What are type modifiers in c?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Explain output of printf("Hello World"-'A'+'B'); ?
What is memcpy() function?
can we declare a variable in different scopes with different data types? answer in detail
How can I remove the leading spaces from a string?