Generation

generate functionFri, 07 Apr 2023

Ecrire une fonction ou procédure qui permet d’avoir un nombre entier positif et afficher son image miroir. Exemple le nombre est 3524, on doit afficher 4253.

#include <stdio.h> void main() { int n=0,c=0, i=0,t=0; printf("Enter a number :"); scanf("%d", &n); t=n; while(t>0) { c=t%10; t=t/10; i=(i*10)+c; } printf("%d", i); }

Questions about programming?Chat with your personal AI assistant