sum of two integers values only other then integer it should print invalid input.
Answer / ahamadbasha
sample output 1
4
5
sum=9
sample output 2
a
b
invalid input
| Is This Answer Correct ? | 3 Yes | 0 No |
How can you read a directory in a C program?
What is a C array and illustrate the how is it different from a list.
What are 'near' and 'far' pointers?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
Give a method to count the number of ones in a 32 bit number?
Explain the concept and use of type void.
What is 02d in c?
What does. int *x[](); means ?
Why cant I open a file by its explicit path?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
What are the preprocessor categories?
What are the advantages of union?