printf("%d",(printf("Hello")); What it returns?
Answer Posted / peddivinodkumarchowdary
hello5
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Which header file is essential for using strcmp function?
How can I do graphics in c?
Write a program to generate the Fibinocci Series
What is a static variable in c?
What are header files in c programming?
Why is C language being considered a middle level language?
What does %d do?
What is difference between constant pointer and constant variable?
What are different types of operators?
Explain what will the preprocessor do for a program?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
What is the advantage of using #define to declare a constant?
Explain what are its uses in c programming?
Are the variables argc and argv are local to main?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above