#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();
}
Answers were Sorted based on User's Feedback
Explain how does flowchart help in writing a program?
write a C program to print the program itself ?!
. Explain the differences between fork() and exec() in C
What is getch c?
why we use "include" word before calling the header file. is there any special name for that include??????
What is ## preprocessor operator in c?
difference between native and cross compilers
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
Can the curly brackets { } be used to enclose a single line of code?
what is difference between strcmp & palindrome?
Explain how do you list files in a directory?
What is the difference between getch() and getche()?