what is the output of below pgm?
void main()
{
int i=0;
if(i)
printf("pass");
else
printf("fail");
}
Answer Posted / srikanth patchava
fail
if check value is thear or not ..if its thear it will got
frist printf other wise it will goto second printf
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
List out few of the applications that make use of Multilinked Structures?
Where static variables are stored in memory in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What are the 5 data types?
Why can’t we compare structures?
When is a “switch” statement preferable over an “if” statement?
Explain the Difference between the New and Malloc keyword.
What’s a signal? Explain what do I use signals for?
What does the function toupper() do?
What are categories used for in c?
What is the advantage of an array over individual variables?
What is the value of uninitialized variable in c?
Explain how can you restore a redirected standard stream?
Explain the ternary tree?
Explain what is a static function?