The code is::::: if(condition)
Printf("Hello");
Else
Printf("World");
What will be the condition in if in such a way that both
Hello and world are printed in a single attempt?????? Single
Attempt in the sense... It must first print "Hello" and it
Must go to else part and print "World"..... No loops,
Recursion are allowed........................
Answer Posted / vaibhav
int a=5,b=5;
if(a==5)
printf("hello");
else;
printf("world");
| Is This Answer Correct ? | 4 Yes | 28 No |
Post New Answer View All Answers
Why isnt any of this standardized in c?
How can I convert a number to a string?
swap 2 numbers without using third variable?
in iso what are the common technological language?
What is getch?
what are non standard function in c
Explain the difference between ++u and u++?
What is the argument of a function in c?
How can you determine the maximum value that a numeric variable can hold?
What is an auto keyword in c?
can anyone suggest some site name..where i can get some good data structure puzzles???
What are variables c?
Can we use visual studio for c?
What is optimization in c?
Explain how can a program be made to print the name of a source file where an error occurs?