V 21

You might also like

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

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

NAME : VARUN AGGARWAL SUBJECT: FOP


PROGRAM DEFINITION: Define a symbolic constant BASIC
with a value 1000 and display
*/

#include<stdio.h>
#include<conio.h>
#define basic 1000

int main()
{
printf("Your basic Salary is %d",basic);
getch();
return 0;
}
/* OUTPUT:
Your basic Salary is 1000
*/

You might also like