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
write a program to display all prime numbers
Describe the modifier in c?
Explain how can you check to see whether a symbol is defined?
Why c is called object oriented language?
When a c file is executed there are many files that are automatically opened what are they files?
Write a code on reverse string and its complexity.
How do you use a 'Local Block'?
Why is c called a mid-level programming language?
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.
How can I write a function analogous to scanf?
Is file a keyword in c?
What is meant by recursion?
Explain the meaning of keyword 'extern' in a function declaration.
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
How do I determine whether a character is numeric, alphabetic, and so on?