output for following code???
main()
{
int x=2,y,z;
x*=3+2;
printf("1.%d\n",x);
x*=y=z=4;
printf("2.%d %d %d\n",x,y,z);
x=y==z;
printf("3.%d\n",x);
x==(y=z);
printf("%d",x);
}
Answer Posted / manikanta
1.10
2.40 4 4
3.1
1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Differentiate between full, complete & perfect binary trees.
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is memcpy() function?
Is null always defined as 0(zero)?
What are the different types of C instructions?
What is c language used for?
Tell me when would you use a pointer to a function?
How can a program be made to print the name of a source file where an error occurs?
What is bss in c?
Explain how can type-insensitive macros be created?
What does a function declared as pascal do differently?
What is this infamous null pointer, anyway?
how to execute a program using if else condition and the output should enter number and the number is odd only...
please send me the code for multiplying sparse matrix using c