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


Please Help Members By Posting Answers For Below Questions

What is %d used for?

676


Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

1767


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

1721


What are c identifiers?

724


An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?

793






How to Throw some light on the splay trees?

704


Which one would you prefer - a macro or a function?

701


What does stand for?

705


Write a C program to count the number of email on text

1510


What is a const pointer?

712


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

2337


Explain how do you declare an array that will hold more than 64kb of data?

1025


Explain the use of keyword 'register' with respect to variables.

701


What is the use of define in c?

696


What is a good way to implement complex numbers in c?

693