Get Answers to all your Questions

header-bg qa

Write a C program to add two numbers where a=10, b=20

Answers (1)

best_answer

#include<iostream.h>
#include<conio.h>
void main()

clrscr();
int a=10,b=20,s;
s=a+b;
cout<<"Sum : "<<s;
getch();

Posted by

Deependra Verma

View full answer