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
What is the use of typedef in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Do variables need to be initialized?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What is the difference between procedural and declarative language?
Are enumerations really portable?
What is the use of bitwise operator?
What are the differences between new and malloc in C?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What are lookup tables in c?
Simplify the program segment if X = B then C ← true else C ← false
Explain the difference between malloc() and calloc() in c?
What is #pragma statements?
What is the ANSI C Standard?
Can math operations be performed on a void pointer?