c program to subtract between two numbers without using '-'
sign and subtract function.
Answer Posted / pm
say, x-y
{
for (int i=y;i>=0;i--)
x--;
cout<<x;
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is the -> in c?
what is bit rate & baud rate? plz give wave forms
Is c is a low level language?
Can we initialize extern variable in c?
Can you subtract pointers from each other? Why would you?
What is wild pointer in c with example?
Place the #include statement must be written in the program?
What is a keyword?
What is a char c?
Explain what is the most efficient way to store flag values?
Explain which function in c can be used to append a string to another string?
Explain what is page thrashing?
What is the purpose of & in scanf?
What is time null in c?
What is methods in c?