write a 'c' program to sum the number of integer values

Answer Posted / koushik sarkar

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
clrscr();
printf("Enter a integer no:-"); scanf("%d",&a);
printf("Enter a Integer no:-"); scanf("%d",&b);
printf("Sum= %d",a+b);
getch();
}

Is This Answer Correct ?    13 Yes 12 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is d'n in c?

651


All technical questions

1524


Explain bit masking in c?

646


Describe dynamic data structure in c programming language?

612


What is mean by data types in c?

561






Explain what is the best way to comment out a section of code that contains comments?

732


What is the meaning of 2d in c?

621


cavium networks written test pattern ..

3604


Explain the priority queues?

634


List the variables are used for writing doubly linked list program.

1630


How to throw some light on the b tree?

611


Explain how are 16- and 32-bit numbers stored?

791


How do you do dynamic memory allocation in C applications?

636


Explain what are the different data types in c?

767


Tell me can the size of an array be declared at runtime?

607