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 file descriptor in c?
Explain how can a program be made to print the line number where an error occurs?
How can I do graphics in c?
What is the use of #include in c?
Explain 'bit masking'?
Can you please explain the difference between strcpy() and memcpy() function?
Is c is a high level language?
please give me some tips for the placement in the TCS.
What are the advantages of c language?
What is the significance of c program algorithms?
What is the difference between single charater constant and string constant?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is indirection in c?
Why is sizeof () an operator and not a function?
Explain what is the difference between far and near ?