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
Dont ansi function prototypes render lint obsolete?
p*=(++q)++*--p when p=q=1 while(q<=6)
What is a structure in c language. how to initialise a structure in c?
Explain do array subscripts always start with zero?
What is #line used for?
What is a lookup table in c?
What are the usage of pointer in c?
Is c dynamically typed?
What is the correct declaration of main?
What does node * mean?
What are lookup tables in c?
By using C language input a date into it and if it is right?
Is exit(status) truly equivalent to returning the same status from main?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
what is the difference between 123 and 0123 in c?