write a 'c' program to sum the number of integer values
Answer Posted / prince rafi
void main()
{
int sum,a=6,b=3;
clrscr();
sum=a+b;
printf("%d",sum);
}
getch();
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Why is c so popular?
difference between Low, Middle, High Level languages in c ?
What are register variables in c?
write a progrmm in c language take user interface generate table using for loop?
Explain the meaning of keyword 'extern' in a function declaration.
Write a program of advanced Fibonacci series.
How will you write a code for accessing the length of an array without assigning it to another variable?
How do I get a null pointer in my programs?
What is s or c?
What is the difference between Printf(..) and sprint(...) ?
What are the restrictions of a modulus operator?
Difference between constant pointer and pointer to a constant.
Can a pointer be null?
How can I invoke another program or command and trap its output?
Explain what is a const pointer?