main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}
output??
Answer Posted / mannucse
35 39
| Is This Answer Correct ? | 6 Yes | 48 No |
Post New Answer View All Answers
Is c is a procedural language?
what is recursion in C
Linked lists -- can you tell me how to check whether a linked list is circular?
Difference between Shallow copy and Deep copy?
How can you check to see whether a symbol is defined?
string reverse using recursion
How can I ensure that integer arithmetic doesnt overflow?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Tell me when is a void pointer used?
Who is the main contributor in designing the c language after dennis ritchie?
What is the purpose of void pointer?
What is the difference between break and continue?
How can I read/write structures from/to data files?
Why do we need arrays in c?
Explain output of printf("Hello World"-'A'+'B'); ?