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
I came across some code that puts a (void) cast before each call to printf. Why?
Why main is used in c?
When c language was developed?
What is a keyword?
Hi can anyone tell what is a start up code?
What is a nested loop?
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 is the advantage of using #define to declare a constant?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Explain how can a program be made to print the name of a source file where an error occurs?
Where static variables are stored in memory in c?
What is pointer to pointer in c?
Explain how many levels deep can include files be nested?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
Is it better to use a macro or a function?