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
Is c weakly typed?
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?
What does it mean when the linker says that _end is undefined?
What is void main () in c?
Are local variables initialized to zero by default in c?
What is the symbol indicated the c-preprocessor?
How pointers are declared?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What is an expression?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Explain what are global variables and explain how do you declare them?
int far *near * p; means
Which header file is essential for using strcmp function?
Implement bit Array in C.
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.