//Product Management Project
#include<stdio.h>
#include<conio.h>
#include<process.h>
#include<string.h>
int size=4;
struct product
{
int id;
char name[20];
int price;
int qun;
long amt;
}s[15]={
{1,"Pen",10,1000,10000},
{2,"Pencil",5,500,2500},
{3,"Eraser",3,670,2010},
{4,"Notebook",30,500,1500}
...
Tuesday, 29 May 2018
Program To Print Particular Line From File.
#include<fstream.h> #include<conio.h> #include<stdlib.h> void main() { ifstream fin; int count=0,num,l=1; char ...
