#include<stdio.h>
void main()
{
int a,b,c;
a=b=c=1;
c=++a || ++b && ++c;
printf("%d\t%d\t%d",a,b,c);
}
Answer Posted / gopinath.j
2 1 1
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is sizeof array?
What does node * mean?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What is difference between arrays and pointers?
Write a program to print numbers from 1 to 100 without using loop in c?
Explain what is the difference between a free-standing and a hosted environment?
what is the syallabus of computer science students in group- 1?
What is difference between scanf and gets?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What are the types of arrays in c?
Explain 'bit masking'?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What does *p++ do? What does it point to?
What are valid signatures for the Main function?