write a addition of two no. program with out using
printf,scanf,puts .

Answer Posted / honey

void main()
{
char a,;
int i;
for(i=0;i<5;i++)
{
a=getchar();
}
for(i=0;i<5;i++)
{
putchar(a)l
}
}

Is This Answer Correct ?    6 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.

1209


Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)

600


What are structural members?

566


why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???

1511


What is methods in c?

637






What are pointers really good for, anyway?

610


is it possible to create your own header files?

631


I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...

9651


Tell me can the size of an array be declared at runtime?

592


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

632


Explain what are linked list?

617


What is a void * in c?

589


How do I create a directory? How do I remove a directory (and its contents)?

600


Why are algorithms important in c program?

614


Multiply an Integer Number by 2 Without Using Multiplication Operator

316