m=++i&&++j(||)k++
printf("%d"i,j,k,m)
Answer / aravind
error
relational operators can't be assaigned, they are used for just conditions.
| Is This Answer Correct ? | 4 Yes | 12 No |
What is an lvalue and an rvalue?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Difference between constant pointer and pointer to a constant.
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
What is the purpose of the statement: strcat (S2, S1)?
Do pointers need to be initialized?
How can you convert integers to binary or hexadecimal?
Why do we use return in c?
write program on arrays
What does p mean in physics?
what is the diff b/w static and non static variables in C. Give some examples plz.
What is character set?