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

a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f

0 Answers   TCS,


write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .

1 Answers   Subex,


what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7

4 Answers   TCS,


Why c language is called c?

0 Answers  


What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?

1 Answers   Excel,


What are the ways to a null pointer can use in c programming language?

0 Answers  


Write a program to check whether a number is prime or not using c?

0 Answers  


What do the functions atoi(), itoa() and gcvt() do?

0 Answers   Aspire, Infogain,


Concat two string with most overlapped substring has to remove  "abcd"+ "cdef" = "abcdef

6 Answers  


Explain 'bit masking'?

0 Answers   EXL,


Explain union.

0 Answers  


a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

0 Answers   Wilco,


Categories