#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
Explain how do you determine a file’s attributes?
What is floating point constants?
What are control structures? What are the different types?
How can I list all of the predefined identifiers?
What is new line escape sequence?
What are qualifiers and modifiers c?
What is the advantage of an array over individual variables?
What is the difference between new and malloc functions?
Explain how can you check to see whether a symbol is defined?
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 %c do in c?
What is the difference between pure virtual function and virtual function?
Explain is it valid to address one element beyond the end of an array?
How to write c functions that modify head pointer of a linked list?
What are dangling pointers? How are dangling pointers different from memory leaks?