sum of two integers values only other then integer it should print invalid input.

Answer Posted / ahamadbasha

sample output 1
4
5
sum=9

sample output 2
a
b
invalid input

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

591


What is a void pointer in c?

599


What is sorting in c plus plus?

558


write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

2694


Why can’t constant values be used to define an array’s initial size?

823






Explain the difference between exit() and _exit() function?

624


What do you mean by a sequential access file?

620


What is scope rule of function in c?

539


How does placing some code lines between the comment symbol help in debugging the code?

535


program for reversing a selected line word by word when multiple lines are given without using strrev

1936


Is the exit() function same as the return statement? Explain.

652


Why isnt there a numbered, multi-level break statement to break out

579


Explain how many levels deep can include files be nested?

620


If null and 0 are equivalent as null pointer constants, which should I use?

569


Which of these functions is safer to use : fgets(), gets()? Why?

626