#include<stdio.h>
void main()
{
int =1;
printf("%d%d%d",a++,++a,++a);
}
Answer Posted / sravani
i got the answer 1,3,4
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What’s the special use of UNIONS?
Why c language?
In a byte, what is the maximum decimal number that you can accommodate?
Are the outer parentheses in return statements really optional?
How can I remove the trailing spaces from a string?
What is function prototype in c language?
How can I swap two values without using a temporary?
Write a program to print fibonacci series using recursion?
What is a MAC Address?
Write a factorial program using C.
What does do in c?
Can i use “int” data type to store the value 32768? Why?
In a switch statement, explain what will happen if a break statement is omitted?
Where static variables are stored in memory in c?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix