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 / manjunath.goudar
//#include<stdio.h>
main()
{
if(1)
printf("hello");
else;
printf("world");
}
| Is This Answer Correct ? | 7 Yes | 33 No |
Post New Answer View All Answers
i want to know the procedure of qualcomm for getting a job through offcampus
What is a list in c?
Can you return null in c?
Write a code to generate divisors of an integer?
Explain what is the difference between #include and #include 'file' ?
What does struct node * mean?
how can use subset in c program and give more example
What is d scanf?
write a program to copy the string using switch case?
What are local static variables?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Can you write a programmer for FACTORIAL using recursion?
Write a program to use switch statement.
Explain zero based addressing.
What is restrict keyword in c?