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 are the two types of structure?

0 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  


1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures

0 Answers   KPIT,


Why is c called c?

0 Answers  


int far *near * p; means

0 Answers   Honeywell,






What is pass by value in c?

0 Answers  


How do you declare a variable that will hold string values?

0 Answers  


Explain what are linked list?

0 Answers  


implement NAND gate logic in C code without using any bitwise operatior.

4 Answers   Alcatel,


What is a lookup table in c?

0 Answers  


what is different between auto and local static? why should we use local static?

0 Answers  


Explain what is the purpose of "extern" keyword in a function declaration?

0 Answers  


Categories