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 |
read an array and search an element
Is array a primitive data type in c?
what is the difference between getch() and getche()?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
What does 3 mean in texting?
What is define directive?
What is a class?
What does s c mean on snapchat?
Total of how many functions are available in c?
Prove or disprove P!=NP.
Differentiate between #include<...> and #include '...'
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.