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
number of times a digit is present in a number
What is union and structure?
Is sizeof a keyword in c?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Explain what is the benefit of using #define to declare a constant?
Where static variables are stored in memory in c?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What is volatile, register definition in C
What are the advantages of the functions?
What are register variables? What are the advantage of using register variables?
What kind of structure is a house?
How are portions of a program disabled in demo versions?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Explain the advantages of using macro in c language?
Explain the difference between getch() and getche() in c?