Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

#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 / hitesh kumar

enter value of a,b
10
10
sum is 0

Is This Answer Correct ?    2 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a null string in c?

991


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

2051


What does *p++ do? What does it point to?

1007


Explain continue keyword in c

965


Explain what is wrong with this program statement?

1071


How can I dynamically allocate arrays?

1042


What are the 5 types of inheritance in c ++?

972


What is the difference between struct and typedef struct in c?

1087


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

1245


In c language can we compile a program without main() function?

1063


What is operator precedence?

1154


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

1203


Where static variables are stored in c?

1046


How can you call a function, given its name as a string?

1105


How can you allocate arrays or structures bigger than 64K?

1085