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 program to swap two numbers without using third variable?

917


What is scanf_s in c?

736


Write a program for finding factorial of a number.

733


How can I make sure that my program is the only one accessing a file?

793


What is the difference between functions abs() and fabs()?

755






What is dangling pointer in c?

710


What are the features of c language?

704


shorting algorithmS

1892


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

3108


What is the difference between fread and fwrite function?

718


Why doesnt the call scanf work?

784


How can you increase the size of a statically allocated array?

719


What is file in c preprocessor?

763


What does c mean before a date?

715


A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler

708