printf("%d",(printf("Hello")); What it returns?
Answer Posted / srinivasa. p
int
| Is This Answer Correct ? | 0 Yes | 18 No |
Post New Answer View All Answers
What is output redirection?
Why is c used in embedded systems?
Does c have an equivalent to pascals with statement?
Explain high-order and low-order bytes.
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is the concatenation operator?
What is the size of a union variable?
What is quick sort in c?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
What does the format %10.2 mean when included in a printf statement?
Why we write conio h in c?
Write a program to print factorial of given number using recursion?
Is it fine to write void main () or main () in c?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Are pointers really faster than arrays?