n=7623
{
temp=n/10;
result=temp*10+ result;
n=n/10
}
Answer Posted / vignesh1988i
assuming that the variables that are used above are integers....
the result will be : depends on the user....
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is a nested loop?
Why void main is used in c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What is methods in c?
What tq means in chat?
What are compound statements?
Is c high or low level?
What are the advantages of using Unions?
What is declaration and definition in c?
How to write a multi-statement macro?
What is the method to save data in stack data structure type?
What is an example of structure?
What is far pointer in c?
Do you know null pointer?
How is a pointer variable declared?