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 does. int *x[](); means ?
What is 1d array in c?
How do you list a file’s date and time?
What is the use of ?
What is array in c with example?
What is the value of h?
What is the benefit of using const for declaring constants?
Why is c so powerful?
Explain what will the preprocessor do for a program?
Combinations of fibanocci prime series
Explain the process of converting a Tree into a Binary Tree.
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What library is sizeof in c?
Explain how do you determine whether to use a stream function or a low-level function?
Write a code to determine the total number of stops an elevator would take to serve N number of people.