Sie sind auf Seite 1von 1

/* ROLL NO: 1 SEM-1 ICA DIV: A

NAME : VARUN AGGARWAL SUBJECT: FOP


PROGRAM DEFINITION: State the output for the following :
void main()
{
int x,y=10;
char z='a';
x=y+z;
printf("%c%d",x,x);
}
*/
#include<stdio.h>
#include<conio.h>
void main()
{
int x,y=10;
char z='a';
clrscr();
x=y+z;
printf("\n\n\n%c\n%d",x,x);
getch();
}
/* OUTPUT:
k107
*/

Das könnte Ihnen auch gefallen