how can i print "hello"
Answers were Sorted based on User's Feedback
#include<stdio.h>
main()
{
printf("hello");
}
| Is This Answer Correct ? | 7 Yes | 4 No |
Answer / ajithbalaji
Both r wrong
#include<stdio.h>
#include<conio.h>
void main()
{
printf("\"hello\"");
getch();
}
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / vijay kumar tiwari
#include<iostream.h>
main()
{
cout<<"hello";
}
| Is This Answer Correct ? | 3 Yes | 4 No |
c program to arrange digits in a no in ascending and descending order
How would you write qsort?
What are .h files and what should I put in them?
How can you read a directory in a C program?
What is gets() function?
Why preprocessor should come before source code?
What is methods in c?
what are the stages of compilation
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
what is c?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,