write a addition of two no. program with out using
printf,scanf,puts .
Answer Posted / dally
#include<stdio.h>
int main()
{
int a=2,b=3,sum =0;
while(a--){
sum = sum+b;
puts(sum);
}
| Is This Answer Correct ? | 14 Yes | 12 No |
Post New Answer View All Answers
What is indirection? How many levels of pointers can you have?
What is New modifiers?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
List some applications of c programming language?
How can I make it pause before closing the program output window?
What are the functions to open and close file in c language?
How can I swap two values without using a temporary?
#include
How do we print only part of a string in c?
How does free() know explain how much memory to release?
Hai what is the different types of versions and their differences
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
What is the equivalent code of the following statement in WHILE LOOP format?
What are comments and how do you insert it in a C program?