How can I make a program in c to print 'Hello' without
using semicolon in the code?
Answer Posted / shabeer basha
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Hellow"))
{
}
}
// you are use semicolon in your program//
Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is data types?
How do I swap bytes?
What is the size of structure in c?
Why do we use int main?
What is the difference between char array and char pointer?
what do the 'c' and 'v' in argc and argv stand for?
Which is best linux os?
What is 1d array in c?
Why is structure padding done in c?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Why string is used in c?
How can I generate floating-point random numbers?
Why is it important to memset a variable, immediately after allocating memory to it ?
Is null valid for pointers to functions?