TCS Company Programming Program

What is the output of:
#include
void main( )
{
printf ( "nn nn nnn" ) ;
printf ( "nn /n/n nn/n" ) ;
}

Read Solution (Total 33)

TCS Other Question

What is the output of:
main( )
{
float a = 5, b = 2 ;
int c ;
c = a % b ;
printf ( "%d", c ) ;
}
What is the output of the following program:

void main()
{
printf("%d %d %d %d",65,065,0x65,0X65);
}