#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a=0,b=0,c=0;
printf("enter value of a,b");
scanf("
%d %d",a,b);
c=a+b;
printf("sum is %d",c);
getch();
}

Answer Posted / abhishek

enter value of a,b
10
10
sum is 20

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How important is structure in life?

582


What are the types of data structures in c?

596


Is anything faster than c?

577


please explain every phase in the "SDLC" in the dotnet.

2175


How to delete a node from linked list w/o using collectons?

2085






which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

2388


Explain what standard functions are available to manipulate strings?

608


Explain the array representation of a binary tree in C.

723


Which is an example of a structural homology?

775


Write a progarm to find the length of string using switch case?

1604


How to find a missed value, if you want to store 100 values in a 99 sized array?

811


What is an identifier?

618


Was 2000 a leap year?

620


What does == mean in texting?

659


Is sizeof a keyword in c?

574