A Collection Of Technical Questions. Study & Apply.
This is simple,Look the below example,main(){ clrscr(); if( printf( "Hello") == 0 ) { printf( "Hello" ); } else { printf("world"); } getch( );}This is Because printf() will return number of bytes output if success.
Post a Comment
1 comment:
This is simple,
Look the below example,
main()
{
clrscr();
if( printf( "Hello") == 0 )
{
printf( "Hello" );
}
else
{
printf("world");
}
getch( );
}
This is Because printf() will return number of bytes output if success.
Post a Comment