how to write hello word without using semicolon at the end?
Answer Posted / ramu gurram
#include<stdio.h>
int main(void)
{
if(printf("hello world"));
return 0;
}
Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
Explain how can I convert a string to a number?
What are the main characteristics of c language describe the structure of ac program?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What are header files in c programming?
Explain what is a const pointer?
Not all reserved words are written in lowercase. TRUE or FALSE?
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.
Is c is a middle level language?
What is this infamous null pointer, anyway?
What is an auto variable in c?
write a c program for swapping two strings using pointer
What is 1f in c?
What is malloc and calloc?
What are variables and it what way is it different from constants?
List some applications of c programming language?