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
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What are the different types of pointers used in c language?
What does *p++ do? What does it point to?
can anyone suggest some site name..where i can get some good data structure puzzles???
in linking some of os executables are linking name some of them
What header files do I need in order to define the standard library functions I use?
Explain what is the difference between a string and an array?
What is the meaning of c in c language?
What is null in c?
What is the difference between the expression “++a” and “a++”?
What is the best way of making my program efficient?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is masking?
Is there any data type in c with variable size?
What are compound statements?