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 |
Wt are the Buses in C Language
what is a headerfile?and what will be a program without it explain nan example?
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
What do you mean by a sequential access file?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
why you will give me a job in TCS.
What are pointers? What are stacks and queues?
In C, What is the #line used for?
Why main is used in c?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
What is scope rule in c?