Wap to print Items

#include<stdio.h>
#include<conio.h>

void main()

{
	clrscr();
	printf("***LIST OF ITEMS***");
	printf("\nItem\tPrice");
	printf("\nRice \tRs 16.75");
	printf("\nSugar\tRs 15.00");
	getch();
}

No comments:

Post a Comment