main()
{
int x=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}
Answer Posted / pooja
55 59
| Is This Answer Correct ? | 5 Yes | 26 No |
Post New Answer View All Answers
can any one provide me the notes of data structure for ignou cs-62 paper
What is pragma c?
Why c is known as a mother language?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the purpose of main() function?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Write a factorial program using C.
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is the use of volatile?
What is a stream in c programming?
What is 2c dna?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Is that possible to add pointers to each other?
What is string length in c?