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
Differentiate between a structure and a union.
What is huge pointer in c?
What is the size of enum in bytes?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Explain the difference between malloc() and calloc() in c?
Explain how can you tell whether a program was compiled using c versus c++?
How do you view the path?
what are bit fields? What is the use of bit fields in a structure declaration?
in linking some of os executables are linking name some of them
Write a program to print factorial of given number without using recursion?
What are the functions to open and close the file in c language?
Do pointers need to be initialized?
what is a constant pointer in C
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What is gets() function?