printf("%d",(printf("Hello")); What it returns?
Answer Posted / srinivasa. p
5
Printf() return number character print on STD::out
| Is This Answer Correct ? | 13 Yes | 16 No |
Post New Answer View All Answers
Describe newline escape sequence with a sample program?
What the advantages of using Unions?
Why use int main instead of void main?
What is data types?
Are there any problems with performing mathematical operations on different variable types?
What is register variable in c language?
using only #include
Describe the difference between = and == symbols in c programming?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
How to draw the flowchart for structure programs?
What is the scope of an external variable in c?
Write a program to identify if a given binary tree is balanced or not.
When should the volatile modifier be used?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }