main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answers were Sorted based on User's Feedback
Answer / sujith vargheese
Hi The correct Answer is X=55 AND y=94
| Is This Answer Correct ? | 1 Yes | 3 No |
Differentiate between #include<...> and #include '...'
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
What is a good data structure to use for storing lines of text?
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.
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
When is a null pointer used?
write a program to generate 1st n fibonacci prime number
What is a keyword?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Can i use Two or More Main Funtion in any C program.?
how to reverse string "Hello World" by using pointers only. Without any temp var
What is a char in c?