how can i print "hello"

Answer Posted / diwakar prasad singh

#include<stdio.h>
main()
{
printf("hello");
}

Is This Answer Correct ?    7 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we declare variables anywhere in c?

593


What is sizeof int?

646


please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code

1716


What are unions in c?

592


What is the correct declaration of main?

692






How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

600


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

1464


What is the use of parallelize in spark?

582


FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

1210


How do you list a file’s date and time?

644


Why do we use header files in c?

592


What is the difference between text and binary i/o?

606


What is d scanf?

610


string reverse using recursion

1823


What are comments and how do you insert it in a C program?

754