How to print "Hi World" without using semi colon?
Answer Posted / saravana kumar
#include<stdio.h>
void main()
{
if(printf("Hi World"))
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Write a program to reverse a given number in c?
What is void c?
Can an array be an Ivalue?
Explain what standard functions are available to manipulate strings?
If I have a char * variable pointing to the name of a function ..
Differentiate between the = symbol and == symbol?
When should we use pointers in a c program?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Can we declare a function inside a function in c?
Why is #define used?
What is this infamous null pointer, anyway?
How would you rename a function in C?
Write a code to remove duplicates in a string.
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is difference between array and pointer in c?