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


Please Help Members By Posting Answers For Below Questions

Explain how can I convert a string to a number?

852


What are the main characteristics of c language describe the structure of ac program?

941


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1690


What are header files in c programming?

856


Explain what is a const pointer?

842


Not all reserved words are written in lowercase. TRUE or FALSE?

994


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.

5107


Is c is a middle level language?

810


What is this infamous null pointer, anyway?

798


What is an auto variable in c?

974


write a c program for swapping two strings using pointer

2329


What is 1f in c?

2301


What is malloc and calloc?

805


What are variables and it what way is it different from constants?

1016


List some applications of c programming language?

742