Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<stdlib.h>
- void main() {
- int N;
- printf("Entrez un nbr : ");
- scanf("%d",&N);
- while(N>0){
- printf("%d",N%10);
- N = N/10;
- }
- printf("/n");
- system("pause");
- }
Advertisement
Add Comment
Please, Sign In to add comment