Tutorials, Free Online Tutorials,It Challengers provides tutorials and interview questions of all technology like java tutorial, android, java frameworks, javascript, core java, sql, php, c language etc. for beginners and professionals.

Breaking

10. print integer using only putchar

 10.    print integer using only putchar


void PrintNum ( int Num )
{
                      if ( Num == 0 )
                            return;
                      PrintNum ( Num / 10 );
                      Puthcar ( ‘0’+ Num % 10 );


      

No comments:

Post a Comment