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
Which type of language is c?
Why is c so powerful?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Is it fine to write void main () or main () in c?
What is the difference between text and binary i/o?
What is the main difference between calloc () and malloc ()?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What are high level languages like C and FORTRAN also known as?
What happens if you free a pointer twice?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Compare array data type to pointer data type
What is a pointer on a pointer in c programming language?
How many bytes are occupied by near, far and huge pointers (dos)?
What are reserved words with a programming language?