how to write hello word without using semicolon at the end?
Answers were Sorted based on User's Feedback
#include<stdio.h>
void main()
{
if(printf("hello world"))
{
}
}
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / jithneder palle
int main(void)
{
if(printf("hello world"))
}
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / rajveer singh rana
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Hello world"))
getch();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
#include<stdio.h>
int main(void)
{
if(printf("hello world"));
return 0;
}
| Is This Answer Correct ? | 4 Yes | 4 No |
Why void main is used in c?
Explain what are the different data types in c?
Tell us two differences between new () and malloc ()?
What are loops c?
What is an anonymous union and where to apply that ?
Juxtapose the use of override with new. What is shadowing?
What is the difference between exit() and _exit() function in c?
How was c created?
What is the difference b/w main() in C language and main() in C++.
What does #pragma once mean?
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
write a program that print itself even if the source file is deleted?