The code is perfect and no errors execpt few things that shuold be avoided.
may be you want to print from
5 * 1 = 5
5 * 2 = 10
5 * 3 = 15
:
:
5 * 10 = 50
here is your code with slight modifications and proper posting:
follow this next time
#include<stdio.h>
int main()
{
int i, num;
printf( " Enter any number " );
scanf( "%d", &num );
for( i=1 ;i <=10; i++ )
printf( " \t %d * %d = %d \n ", num, i, num*i ) ;
return 0;
}