write a c program to add two integer numbers without using
arithmetic operator +
Answer Posted / reddy
(a+b)=square root([(4ab)+[(a-b)(a-b)]])
| Is This Answer Correct ? | 8 Yes | 31 No |
Post New Answer View All Answers
i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
What is #include called?
Explain what are bus errors, memory faults, and core dumps?
Find MAXIMUM of three distinct integers using a single C statement
What are the different types of C instructions?
How can I change their mode to binary?
Can the curly brackets { } be used to enclose a single line of code?
What is a global variable in c?
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.
What does double pointer mean in c?
When we use void main and int main?
What is call by reference in functions?
What is static and auto variables in c?
Explain what is a pragma?
What are the modifiers available in c programming language?