in C-programming language without using printf statement
can we get output r not ? if yes how and if no also how ?

Answer Posted / mahendran

#include<graphics.h>
#include<conio.h>
void main()
{
int gd=DETECT,gm;
initgraph(&gd,&gm, "");
outtextxy(75,170,"Welcome");
getch();
}

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.

3347


What is the meaning of c in c language?

608


What is pivot in c?

574


Can a void pointer point to a function?

586


In C, What is the #line used for?

1086






Explain what is the advantage of a random access file?

680


What does a pointer variable always consist of?

674


What is variable declaration and definition in c?

510


Is main is a keyword in c?

622


What is the use of static variable in c?

601


Can variables be declared anywhere in c?

632


Is that possible to store 32768 in an int data type variable?

700


What is a method in c?

633


Who developed c language and when?

596


What do you mean by a sequential access file?

637