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
How will you find a duplicate number in a array without negating the nos ?
How can I discover how many arguments a function was actually called with?
Write a program of advanced Fibonacci series.
What are run-time errors?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is wrong with this initialization?
Explain what are the standard predefined macros?
Is main is user defined function?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Where does the name "C" come from, anyway?
What is calloc malloc realloc in c?
Disadvantages of C language.
Compare and contrast compilers from interpreters.
What are structures and unions? State differencves between them.
When was c language developed?