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 |
How can I find out if there are characters available for reading?
Why do some versions of toupper act strangely if given an upper-case letter?
Write a c program to demonstrate Type casting in c?
Why is event driven programming or procedural programming, better within specific scenario?
What is the difference between exit() and _exit()?
What is formal argument?
Why is c so popular?
what is the difference between postfix and prefix unary increment operators?
What are the key features of C?
What does %d do?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Is c dynamically typed?