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
Write a code to determine the total number of stops an elevator would take to serve N number of people.
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Explain two-dimensional array.
What are external variables in c?
What happens if header file is included twice?
Are c and c++ the same?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Does free set pointer to null?
What do you mean by dynamic memory allocation in c? What functions are used?
In C programming, what command or code can be used to determine if a number of odd or even?
What is c language used for?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
How can I open a file so that other programs can update it at the same time?
What is the difference between volatile and const volatile?