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 / vignesh1988i
but goto is not a good sort of programming ............. a
well knowledgeable programmer wont use goto..... according
to me........... plz think of any other logic??????????
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
What are the features of c languages?
Are the variables argc and argv are local to main?
What are static variables in c?
What is the difference between procedural and functional programming?
What is function definition in c?
What are the preprocessor categories?
Should I learn data structures in c or python?
How many levels of pointers can you have?
What does 1f stand for?
Explain can you assign a different address to an array tag?
What are c identifiers?
What is meant by gets in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
How will you find a duplicate number in a array without negating the nos ?
What is the use of #define preprocessor in c?