//find the reverse number using while loop
#include <stdio.h>
int main (){
int num,rem;
printf ("enter the value of number ");
scanf ("%i",&num);
while (num>0){
rem=num%10;
printf ("%i",rem);
num=num/10;
}
return 0;
}
// print a multiplication table of any integer taking from user #include "stdio.h" int main () { int n,mul,i; printf ("...
No comments:
Post a Comment