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

printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

636


Is main a keyword in c?

632


What will be the outcome of the following conditional statement if the value of variable s is 10?

766


Hai what is the different types of versions and their differences

1491


Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.

2655






Explain null pointer.

622


What are the applications of c language?

624


What is a string?

666


What is a static variable in c?

667


Explain how does flowchart help in writing a program?

630


What is main () in c?

588


how should functions be apportioned among source files?

627


What are derived data types in c?

610


what do you mean by enumeration constant?

599


Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record

4742