how can we print hellow world programme without using semicolon
Answer Posted / akbar
#include<stdio.h>
int main()
{
printf("Hello World
");
return 0;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is structure padding in c?
Explain how can I manipulate strings of multibyte characters?
When is a “switch” statement preferable over an “if” statement?
Write the syntax and purpose of a switch statement in C.
what are bit fields? What is the use of bit fields in a structure declaration?
What is the difference between arrays and pointers?
Explain modulus operator.
When should a type cast be used?
Explain what is the difference between the expression '++a' and 'a++'?
What is structure of c program?
What is a structure member in c?
Explain heap and queue.
What is the advantage of an array over individual variables?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
int i=10; printf("%d %d %d", i, i=20, i);