main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / sheikh rasel
11
15
| Is This Answer Correct ? | 2 Yes | 10 No |
Post New Answer View All Answers
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
Write a Program to find whether the given number or string is palindrome.
Are comments included during the compilation stage and placed in the EXE file as well?
What are categories used for in c?
Describe newline escape sequence with a sample program?
What is a node in c?
What is the c value paradox and how is it explained?
What are the Advantages of using macro
Can a variable be both const and volatile?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Can you mix old-style and new-style function syntax?
What is null in c?
The difference between printf and fprintf is ?
Can you explain the four storage classes in C?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.