how to write hello word without using semicolon at the end?
Answer Posted / rajveer singh rana
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Hello world"))
getch();
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Does c have circular shift operators?
what do you mean by enumeration constant?
What are the different properties of variable number of arguments?
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.
Can we access the array using a pointer in c language?
What is the use of sizeof?
What standard functions are available to manipulate strings?
What is the scope of local variable in c?
The __________ attribute is used to announce variables based on definitions of columns in a table?
What are directives in c?
write a program to print data of 5 five students with structures?
What is the meaning of ?
Do variables need to be initialized?
List some basic data types in c?
Should I learn c before c++?