x=y=z=1
z=++x||++y&&++z
Printf("%%%d";xyz)
what is the values of x,y and z?????
Answers were Sorted based on User's Feedback
What are the application of c?
Is flag a keyword in c?
what is the difference between class and unio?
what is the difference between #include<stdio.h> and #include "stdio.h" ?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What is the difference between c &c++?
What is the size of a union variable?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
What is hashing in c?
What is the difference between %d and %i?