This is the code I used...

of couse, being a newbie, right now I'm not able to do that all by myself so I got some help on it...

PHP Code:
#include <stdio.h>
#include <string.h>

int mainvoid )
{
    
char num[256];
    
int i;

    
printf"Enter a number: " );
    
scanf"%s", &num );

    
printf"\nYour number: %s\n"num );

    
printf"Your number backwards: " );
    for( 
0<= strlennum ); i++ ){
        
printf"%c"num[strlennum ) - i] );
    }
    
printf("\n");

    return 
0;


-Emo