n=7623
{
temp=n/10;
result=temp*10+ result;
n=n/10
}
Answer Posted / guest
3267
| Is This Answer Correct ? | 12 Yes | 7 No |
Post New Answer View All Answers
What is c programming structure?
What is the need of structure in c?
What is the difference between text and binary modes?
Why is it usually a bad idea to use gets()? Suggest a workaround.
Are pointers really faster than arrays?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What are 'near' and 'far' pointers?
What is array of structure in c?
What are file streams?
What does a pointer variable always consist of?
can we implement multi-threads in c.
shorting algorithmS
What is the function of multilevel pointer in c?
What are integer variable, floating-point variable and character variable?
What is the difference between declaring a variable by constant keyword and #define ing that variable?