how can u print a message without using any library function
in c



how can u print a message without using any library function in c..

Answer / sreekanth

void main()
{
clrscr();
printf("Hello World");
getch();
}

Is This Answer Correct ?    5 Yes 24 No

Post New Answer

More C Interview Questions

What is the difference between exit() and _exit() function?

0 Answers  


if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?

4 Answers   Amazon, Apple, Bata, Google, NASA,


identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;

8 Answers   TCS,


What is the use of header?

0 Answers  


Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.

0 Answers  






post new interiew question and aptitude test papers

1 Answers  


Why is main function so important?

0 Answers  


How to access or modify the const variable in c ?

16 Answers   HCL, HP,


Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?

5 Answers  


How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.

1 Answers   HP, TCS,


write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)

10 Answers  


write the program for maximum of the following numbers? 122,198,290,71,143,325,98

5 Answers  


Categories