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

What is a macro, and explain how do you use it?

627


What are the differences between Structures and Arrays?

609


Can we change the value of #define in c?

585


What are the 5 elements of structure?

566


What is the difference between text and binary modes?

647






How is a macro different from a function?

656


Explain what standard functions are available to manipulate strings?

613


any "C" function by default returns an a) int value b) float value c) char value d) a & b

665


When is a null pointer used?

641


Compare interpreters and compilers.

637


What does the format %10.2 mean when included in a printf statement?

1087


What are the different properties of variable number of arguments?

665


What are the Advantages of using macro

688


Is javascript written in c?

584


Why n++ execute faster than n+1 ?

1849