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

write a program to display all prime numbers

1689


Describe the modifier in c?

884


Explain how can you check to see whether a symbol is defined?

879


Why c is called object oriented language?

823


When a c file is executed there are many files that are automatically opened what are they files?

827


Write a code on reverse string and its complexity.

795


How do you use a 'Local Block'?

941


Why is c called a mid-level programming language?

964


Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.

2035


How can I write a function analogous to scanf?

899


Is file a keyword in c?

687


What is meant by recursion?

836


Explain the meaning of keyword 'extern' in a function declaration.

938


write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list

2534


How do I determine whether a character is numeric, alphabetic, and so on?

875