Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

/*

NAME:: DHRUV H RATHOD


ROLL No:: 57 ICA A
Program:: State The Output of the Following
*/

#include<stdio.h>
#include<conio.h>
void main()
{
int x,y=10;
char z='a';
clrscr();
x=y+z;
printf("%c \n %d ",x,x);
getch();
}
/*
============
OUTPUT::
============
k
107
*/

You might also like