how to write a program which adds two numbers without using
semicolon in c
Answer Posted / g.rajitha
#include<iostream.h>
void main()
{
int a,b;
if(cout<<"Please enter two numbers : ")
if(cin>>a>>b)
if(cout<<"Sum = "<<(a+b))
}
| Is This Answer Correct ? | 5 Yes | 16 No |
Post New Answer View All Answers
Can you pass an entire structure to functions?
What is main () in c?
What is volatile variable how do you declare it?
What is huge pointer in c?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
swap 2 numbers without using third variable?
Can you please compare array with pointer?
write a program to print data of 5 five students with structures?
Process by which one bit pattern in to another by bit wise operation is?
What is the purpose of void pointer?
Why is c so powerful?
What is pass by value in c?
How does free() know explain how much memory to release?
What is data structure in c language?
What is call by value in c?