main()
{
int i=5;
printf("%d%d%d%d",i++,i--,i);
}
Answer Posted / sunil5a2
4 5 5
printf excutes form lefthand side onwords..
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is 1f in c?
How to get string length of given string in c?
Why c is called top down?
Write a program to print numbers from 1 to 100 without using loop in c?
What is the size of structure in c?
Who is the founder of c language?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Differentiate between ordinary variable and pointer in c.
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What are different storage class specifiers in c?
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.
What is the stack in c?
Explain indirection?
How many types of functions are there in c?