x=2,y=6,z=6
x=y==z;
printf(%d",x)
Post New Answer View All Answers
What is && in c programming?
What are header files in c programming?
Where are the auto variables stored?
Are negative numbers true in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What are header files? What are their uses?
What do you mean by dynamic memory allocation in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What is a pointer variable in c language?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is the use of function overloading in C?
What are comments and how do you insert it in a C program?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is use of #include in c?