You are on page 1of 1

/* NAME: VARUN AGGARWAL

ROLL NO: 1 SEM-1 ICA DIV: A


SUBJECT: FOP
DEFINITION:

*/

#include "stdio.h"
#include "conio.h"
int main()
{
float x,y;
clrscr();
printf("\nEnter Two No.s :\n");
scanf("%f %f",&x,&y);
printf("\nSummation of %f and %f =is ",x,y);
printf("%f",x+y);
getch();
return 0;
}

/* OUTPUT:

*/

You might also like