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
What should malloc(0) do?
how can f be used for both float and double arguments in printf? Are not they different types?
What are integer variable, floating-point variable and character variable?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What are the disadvantages of c language?
Differentiate Source Codes from Object Codes
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What will the preprocessor do for a program?
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
Write a program to reverse a linked list in c.
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Why is a semicolon (;) put at the end of every program statement?
What is volatile, register definition in C
Explain the properties of union.