How can I make a program in c to print 'Hello' without
using semicolon in the code?
Answer Posted / prashanth
main()
{
if(printf("hello"))
}
| Is This Answer Correct ? | 54 Yes | 9 No |
Post New Answer View All Answers
When should a type cast be used?
What is the difference between the local variable and global variable in c?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What is array of pointers to string?
regarding pointers concept
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
Why is void main used?
State the difference between realloc and free.
What is spaghetti programming?
Differentiate between null and void pointers.
What is #include cctype?
What are type modifiers in c?
What is s or c?
When should you not use a type cast?
What is the correct code to have following output in c using nested for loop?