main()
{
printf("hello%d",print("QUARK test?"));
}
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
QUARK test?hello1
first it prints the inner most printf statement and then and the comes to the second printf and returns the number of characters inside the " ". but this wat i think, may be wrong too
thank u.
| Is This Answer Correct ? | 1 Yes | 1 No |
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
What is the most efficient way to store flag values?
In c programming language, how many parameters can be passed to a function ?
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
What is maximum size of array in c?
what is difference between procedural language and functional language ?
What are the data types present in c?
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
What are header files and what are its uses in C programming?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
How does struct work in c?
What is sizeof int?