simple c program for 12345 convert 54321 with out using string
Answer Posted / sharan
#include<stdio.h>
//#include<conio.h>
void main()
{
int n,m;
printf("enter the number :");
scanf("%d",&n);
while (n)
{
m=n%10;
n=n/10;
printf("%d",m);
}
printf("\n");
}
Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
What is c preprocessor mean?
What are qualifiers in c?
What is #include stdlib h?
What is the total generic pointer type?
Why shouldn’t I start variable names with underscores?
What is hash table in c?
What are the 5 types of inheritance in c ++?
What does. int *x[](); means ?
Is it cc or c in a letter?
When was c language developed?
What does the error 'Null Pointer Assignment' mean and what causes this error?
C language questions for civil engineering
Write a program of advanced Fibonacci series.
What is the use of pointers in C?