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 / nisha
If(?)
printf("hello");
else
Printf("world");
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is meant by keywords in c?
Why do we use pointer to pointer in c?
Why do we need arrays in c?
Explain what is the benefit of using enum to declare a constant?
What is atoi and atof in c?
Why we use break in c?
How can a process change an environment variable in its caller?
What is a const pointer in c?
What are the 5 elements of structure?
can anyone suggest some site name..where i can get some good data structure puzzles???
which is an algorithm for sorting in a growing Lexicographic order
What does double pointer mean in c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What oops means?
What is main () in c language?