How can you print HELLO WORLD without using "semicolon"?
Answer Posted / spicy
#include<stdio.h>
void main()
{
if(printf("HELLO WORLD"))
getch();
}
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
Write a program that accept anumber in words
Explain about block scope in c?
What is use of null pointer in c?
write a program to concatenation the string using switch case?
What is the stack in c?
write a c program to find the sum of five entered numbers using an array named number
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Why is C language being considered a middle level language?
Process by which one bit pattern in to another by bit wise operation is?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
C program to find all possible outcomes of a dice?
Why is c called a structured programming language?
What does s c mean on snapchat?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Is it possible to pass an entire structure to functions?