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


Please Help Members By Posting Answers For Below Questions

Write a code to determine the total number of stops an elevator would take to serve N number of people.

963


What is data types?

790


How do I swap bytes?

811


What is the size of structure in c?

873


Why do we use int main?

821






What is the difference between char array and char pointer?

718


what do the 'c' and 'v' in argc and argv stand for?

841


Which is best linux os?

746


What is 1d array in c?

827


Why is structure padding done in c?

859


What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers

931


Why string is used in c?

738


How can I generate floating-point random numbers?

782


Why is it important to memset a variable, immediately after allocating memory to it ?

1750


Is null valid for pointers to functions?

829