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
If null and 0 are equivalent as null pointer constants, which should I use?
In C language, a variable name cannot contain?
Why is %d used in c?
Differentiate call by value and call by reference?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
What is array within structure?
What is queue in c?
What are the 5 types of inheritance in c ++?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
Why we use void main in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
How do you convert strings to numbers in C?
What is nested structure in c?
What is pragma in c?
What will the preprocessor do for a program?