Program #35: Program using type casting or explicit type conversion
C Language
#include<stdio.h>
#include<conio.h>
void main( )
{
int a, b;
clrscr( );
a = 60;
b = 5;
printf("After type conversion a + b = %c", char (a+b));
getch( );
}
/*OUTPUT*/
After type conversion a + b = A