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

int x=sizeof(!5.856); What will value of variable x?

2 Answers  


6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()

2 Answers   Accenture,


What is the use of keyword VOLATILE in C?

1 Answers  


An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode

0 Answers  


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

0 Answers  






What are the different types of pointers used in c language?

0 Answers  


what is the function of pragma directive in c?

0 Answers  


main() { int i=5; printf("%d%d%d%d",i++,i--,i); }

10 Answers  


a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if

0 Answers  


What is the use of in c?

0 Answers  


What is volatile

2 Answers  


How do you determine whether to use a stream function or a low-level function?

0 Answers  


Categories