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
What is %d used for?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What are c identifiers?
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?
How to Throw some light on the splay trees?
Which one would you prefer - a macro or a function?
What does stand for?
Write a C program to count the number of email on text
What is a const pointer?
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.
Explain how do you declare an array that will hold more than 64kb of data?
Explain the use of keyword 'register' with respect to variables.
What is the use of define in c?
What is a good way to implement complex numbers in c?