How can I make a program in c to print 'Hello' without
using semicolon in the code?
Answer Posted / manjushree
#include<stdio.h>
#include<conio.h>
int main()
{
if(printf("Hello"))
{
}
getch();
}
// if u use while loop it goes for an infinite loop , so
better to use if condition
Is This Answer Correct ? | 12 Yes | 3 No |
Post New Answer View All Answers
What is int main () in c?
How to define structures? ·
I heard that you have to include stdio.h before calling printf. Why?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Is swift based on c?
What is meant by realloc()?
What is c standard library?
How many data structures are there in c?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What are qualifiers in c?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What does the characters “r” and “w” mean when writing programs that will make use of files?
When should we use pointers in a c program?
By using C language input a date into it and if it is right?
List out few of the applications that make use of Multilinked Structures?