printf("%d",(printf("Hello")); What it returns?
Answers were Sorted based on User's Feedback
Answer / praneeth
It doesn't because in printf access specifier is Integer
but to display Hello we should use %s.
| Is This Answer Correct ? | 1 Yes | 22 No |
what is the difference between exit() and _exit() functions?
write a program which counts a product of array elements lower than 10.
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,
What are function pointers? Provide an example.
What is the difference between near, far and huge pointers?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
if the total selling price of 15 items and the total profit earned on them is input through the keyboard, write a program to find the cost price of one of the item
How can I sort more data than will fit in memory?
What does dm mean sexually?
int i=10; printf("%d %d %d", i, i=20, i);
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is the difference between int main and void main?