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
What is int main () in c?
What does it mean when a pointer is used in an if statement?
how to find binary of number?
How do we open a binary file in Read/Write mode in C?
What is clrscr ()?
What is variable declaration and definition in c?
Does c have function or method?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
Why should I use standard library functions instead of writing my own?
What are lookup tables in c?
In a switch statement, explain what will happen if a break statement is omitted?
What is meant by preprocessor in c?
what is the significance of static storage class specifier?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Can you think of a logic behind the game minesweeper.