#include<stdio.h>
main()
{
int a=1;
int b=0;
b=++a + ++a;
printf("%d %d",a,b);
}
Answer Posted / m.karthiga
3 6
| Is This Answer Correct ? | 19 Yes | 15 No |
Post New Answer View All Answers
What is bubble sort technique in c?
What is a MAC Address?
Is c call by value?
What is function what are the types of function?
What is a scope resolution operator in c?
What is size of union in c?
What is the difference between union and structure in c?
Explain the priority queues?
What is the purpose of realloc()?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
Explain how can I make sure that my program is the only one accessing a file?
Are the variables argc and argv are local to main?
Are negative numbers true in c?
What is variable in c example?
Explain what is wrong in this statement?