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
How do you print an address?
What does 4d mean in c?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
How do you convert strings to numbers in C?
What is difference between scanf and gets?
What are variables and it what way is it different from constants?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What are the rules for the identifier?
What is pass by value in c?
Difference between malloc() and calloc() function?
Explain the priority queues?
List the difference between a While & Do While loops?
Why & is used in c?
Can a variable be both static and volatile in c?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?