#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 modulus operator. What are the restrictions of a modulus operator?
how many header file is in C language ?
44 Answers College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,
What are run-time errors?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
How can I call a function, given its name as a string?
how many errors in c explain deply
How to explain the final year project as a fresher please answer with sample project
How can I handle floating-point exceptions gracefully?
How can you find the exact size of a data type in c?
What is spark map function?
explain memory layout of a C program
Why shouldn’t I start variable names with underscores?