SlideShare ist ein Scribd-Unternehmen logo
1 von 20
Computer
Final Review
Fall Semester 2014
By:
• Atit S Gaonkar
14BCE1144
• Siddharth Mohanty
14BME1124
Code
#include<stdio.h>
#include<windows.h>
#include<conio.h>
#include<process.h>
#include<stdlib.h>
#include<ctype.h>
#include<dos.h>
#include<string.h>
#include<time.h>
#include<math.h>
void gotoxy(int x, int y)
{
COORD coord;
coord.X = x;
coord.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),coord);
}
struct AddItem
{
int item_id;
char item_name[50];
float price;
};
struct Bill
{
int bill_id;
char cust_name[50];
char item_name[10][50];
float quant[10];
float total;
float price[10];
char date[15];
int n;
};
FILE *fp,*fp1,*bifp,*bifp1;
struct AddItem ad;
struct Bill bi;
int add_item();
int generate_bill();
int delete_bill();
int display_bill();
int q=0;
main()
{
int i=1;
system("cls");
printf("nnnnnnttt * * * * * * * * * * * * * * * * * * *");
printf("nnnnttt * SHOPPING MALL BILLING SYSTEM *");
printf("nnnnttt * * * * * * * * * * * * * * * * * * *");
printf("nnttt1.Continuennttt2.EXIT");
printf("nntttEnter Your Option : ");
scanf("%d",&i);
if(i==2)
{
system("cls");
printf("nnnnnnnnnntttt THANKS YOU");
printf("nnntttt Exiting In 3 Secs");
for(int f=1;f<4;f++)
{
printf(" .");
Sleep(600);
printf(" .");
Sleep(600);
printf(" .");
Sleep(600);
system("cls");
exit(0);
}
}
else
{
int f=1,choice;
system("cls");
printf("nnPLEASE WAIT");
for(f=1;f<2;f++)
{
Sleep(600); printf(" .");
Sleep(600);
printf(" .");
Sleep(600);
}
XYZ:
system("cls");
printf("ttt ********************************n");
printf("nttt SHOPPING MALL BILLING SYSTEMn");
printf("nttt ********************************");
printf("n-------------------------------------------------------------------------------");
printf("nnt1. ADD PRODUCT");
printf("nnt2. GENERATE A BILL");
printf("nnt3. DISPLAY A BILL");
printf("nnt4. DELETE A BILL");
printf("nnt5. EXIT");
printf("n-------------------------------------------------------------------------------");
printf("nnENTER CORRESPONDING KEYS TO PERFORM
OPERATION :- ");
ABC:
scanf("%d",&choice);
switch(choice)
{
case 1:
q=add_item();
if(q==2)
{
system("cls");
printf("nnnnnnnnnntttt THANK YOU");
Sleep(1800);
exit(0);
}
else
{
system("cls");
goto XYZ;
}
break;
case 2:
q=generate_bill();
if(q==2)
{
system("cls");
printf("nnnnnnnnnntttt THANK YOU");
Sleep(1800);
exit(0);
}
else
{
system("cls");
goto XYZ;
}
break;
case 3:
q=display_bill();
if(q==2)
{
system("cls");
printf("nnnnnnnnnntttt THANK YOU");
Sleep(1800);
exit(0);}
else
{
system("cls");
goto XYZ;
}
break;
case 4:
q=delete_bill();
if(q==2)
{
system("cls");
printf("nnnnnnnnnntttt THANK YOU");
Sleep(1800);
exit(0);
}
else
{
system("cls");
goto XYZ;
}
case 5:
system("cls");
printf("nnnnnnnnnntttt THANK YOU");
Sleep(1800);
exit(0);
default:
printf("nntYOU ENTERED A WRONG
VALUE.PLEASE TRY AGAIN : ");
goto ABC;
}
}
getch();
}
int add_item()
{
int f=1,id=0,p[10],i=0,h=0,t=0;
fp=fopen("Products.txt","a");
fclose(fp);
system("cls");
while(f==1)
{
system("cls");
fp=fopen("Products.txt","r");
while((fread(&ad,sizeof(ad),1,fp))==1)
{
id=ad.item_id;
}
fclose(fp);
printf("ntENTER PRODUCT NAME :-t");
scanf("%s",ad.item_name);
printf("ntENTER PRODUCT PRICE :-t");
scanf("%f",&ad.price);
id++;
p[i]=id;
i++;
ad.item_id=id;
fp=fopen("Products.txt","a");
fwrite(&ad,sizeof(ad),1,fp);
fclose(fp);
printf("nnnntYOUR PRODUCT WITH ID %d IS ADDED
SUCCESSFULLY....",ad.item_id);
printf("nnt 1. TO ADD NEW PRODUCT 2. TO EXIT...t");
printf("nntEnter Your Choice : ");
scanf("%d",&f);
if(f!=1)
{
break;
}
}
system("cls");
i=0;
fp=fopen("Products.txt","r");
while((fread(&ad,sizeof(ad),1,fp))==1)
{
if(p[i]==ad.item_id)
{
printf("ntPRODUCT ID :- %d",ad.item_id);
printf("ntPRODUCT NAME :- %s",ad.item_name);
printf("ntPRODUCT PRICE :- %f",ad.price);
printf("nn");
i++;
}
}
fclose(fp);
printf("nnt 1. TO GO TO MENU PAGE nnt2. TO EXIT :-t");
scanf("%d",&q);
return q;
}
int generate_bill()
{
time_t now;
struct tm *d;
int w=0;
int item_id,f=1,i=0,n=0,p=0,bill_id=0,k=1,j=0;
float total=0,quant=0;
bifp=fopen("GBill.txt","a");
fclose(bifp);
while(f==1)
{
int flag=0;
system("cls");
if(j==0)
{
bifp=fopen("GBill.txt","r");
while((fread(&bi,sizeof(bi),1,bifp))==1)
{
bill_id=bi.bill_id;
}
bill_id++;
bi.bill_id=bill_id;
fclose(bifp);
j++;
}
printf("tNOTE :- JUST ENTER PRODUCT ID OF BUYING PRODUCTS
TO CALCULATE BILL");
printf("nntPRODUCT ID :-t");
scanf("%d",&item_id);
fp=fopen("Products.txt","r");
while((fread(&ad,sizeof(ad),1,fp))==1)
{
if(item_id==ad.item_id)
{
printf("nntPRODUCT NAME :- %s",ad.item_name);
strcpy(bi.item_name[i],ad.item_name);
printf("tPRODUCT PRICE :- %f",ad.price);
bi.price[i]=ad.price;
printf("nn");
flag=1;
}
}
if(flag==0)
{
printf("nntYOUR PRODUCT ID IS NOT FOUND.");
}
else
{
printf("nntQUANTITY OF PRODUCT :-t");
scanf("%f",&quant);
bi.quant[i]=quant;
total=total+quant*ad.price;
bi.total=total;
flag=0;
bi.n=i;
n=i;
i++;
}
fclose(fp);
printf("nnnt 1. TO ADD MORE PRODUCT nnnt2. TO GO TO BILL
PAGE : ");
scanf("%d",&f);
}
system("cls");
printf("ntPUT DOWN CUSTOMER INFORMATION .....");
printf("nntCUSTOMER NAME :- ");
scanf("%s",&bi.cust_name);
time(&now);
d=localtime(&now);
strftime(bi.date, 15, "%d/%m/%Y", d);
printf("nnnt 1. TO GENERATE A BILL nnt2. TO GO TO MAIN MENU : ");
scanf("%d",&p);
if(p!=1)
{
return p;
}
else
{
i=0;
bifp=fopen("GBill.txt","a");
fwrite(&bi,sizeof(bi),1,bifp);
fclose(bifp);
system("cls");
printf("nntBILL IS BEING GENERATED");
printf("nntPlesase Wait");
for(p=0;p<3;p++)
{
Sleep(500);
printf(" .");
Sleep(500);
printf(" .");
Sleep(500);
printf(" .");
Sleep(500);
system("cls");
}
printf("nnttt ********************************n");
printf("nttt SHOPPING MALL BILLING SYSTEMn");
printf("nttt ********************************");
printf("n----------------------------------------------------");
gotoxy(2,5);
printf("CUSTOMER NAME : %s",bi.cust_name);
gotoxy(36,5);
printf("BILL ID : %d",bi.bill_id);
gotoxy(62,5);
printf("DATE : %s",bi.date);
printf("n----------------------------------------------------");
gotoxy(4,7);
printf("SrNo.");
gotoxy(12,7);
printf("ITEM NAME");
gotoxy(32,7);
printf("PRICE");
gotoxy(53,7);
printf("QUANTITY");
gotoxy(70,7);
printf("TOTAL");
total=0;
for(i=0;i<=n;i++)
{
Sleep(200);
gotoxy(5,w+9);
printf("%d",i+1);
gotoxy(14,w+9);
printf("%s",bi.item_name[i]);
gotoxy(31,w+9);
printf("%f",bi.price[i]);
gotoxy(53,w+9);
printf("%f",bi.quant[i]);
gotoxy(68,w+9);
printf("%f",bi.price[i]*bi.quant[i]);
total=total+(bi.price[i]*bi.quant[i]);
w=w+2;
}
Sleep(200);
printf("n-----------------------------------------------------");
gotoxy(14,w+9);
printf("TOTAL");
gotoxy(66,w+9);
printf("%f Rs",total);
printf("n-------------------------------------------------------");
Sleep(200);
printf("nnt1. TO GO TO MAIN MENU nnt2. TO EXIT ");
printf("nntEnter Your Choice : ");
scanf("%d",&q);
return q;
}
}
int display_bill()
{
int w=0,p=0;
int item_id,f=0,i=0,bill_id=0;
float total;
system("cls");
printf("nntPLEASE ENTER YOUR BILL-ID :- ");
scanf("%d",&bill_id);
bifp=fopen("GBill.txt","a");
fclose(bifp);
bifp=fopen("GBill.txt","r");
while((fread(&bi,sizeof(bi),1,bifp))==1)
{
if(bill_id==bi.bill_id)
{
f=1;
system("cls");
for(p=0;p<3;p++)
{
printf("nntSEARCHING");
Sleep(500);
printf(" .");
Sleep(500);
printf(" .");
Sleep(500);
printf(" .");
Sleep(500);
system("cls");
}
printf("nnttt ********************************n");
printf("nttt SHOPPING MALL BILLING SYSTEMn");
printf("nttt ********************************");
printf("n-------------------------------------------------------------");
gotoxy(2,5);
printf("CUSTOMER NAME : %s",bi.cust_name);
gotoxy(36,5);
printf("BILL ID : %d",bi.bill_id);
gotoxy(62,5);
printf("DATE : %s",bi.date);
printf("n-----------------------------------------------------------");
gotoxy(4,7);
printf("SrNo.");
gotoxy(12,7);
printf("ITEM NAME");
gotoxy(32,7);
printf("PRICE");
gotoxy(53,7);
printf("QUANTITY");
gotoxy(70,7);
printf("TOTAL");
total=0;
for(i=0;i<=bi.n;i++)
{
Sleep(200);
gotoxy(5,w+9);
printf("%d",i+1);
gotoxy(14,w+9);
printf("%s",bi.item_name[i]);
gotoxy(31,w+9);
printf("%f",bi.price[i]);
gotoxy(53,w+9);
printf("%f",bi.quant[i]);
gotoxy(68,w+9);
printf("%f",bi.price[i]*bi.quant[i]);
total=total+(bi.price[i]*bi.quant[i]);
w=w+2;
}
Sleep(200);
printf("n-------------------------------------------------------------");
gotoxy(14,w+9);
printf("TOTAL");
gotoxy(66,w+9);
printf("%f Rs",total);
printf("n-------------------------------------------------------------");
break;
}
}
if(f==0)
{
printf("nntSORRY, YOUR BILL-ID DOES NOT MATCH");
}
fclose(bifp);
Sleep(200);
printf("nntPRESS 1 TO GO TO MAIN MENU nn2. TO EXIT :- ");
scanf("%d",&q);
return q;
}
int delete_bill()
{
int item_id,f=0,i=0,bill_id=0;
system("cls");
bifp=fopen("GBill.txt","w");
fclose(bifp);
printf("nPLEASE ENTER YOUR BILL-ID :- ");
scanf("%d",&bill_id);
bifp=fopen("GBill.txt","r");
while(fread(&bi,sizeof(bi),1,bifp)==1)
{
if(bi.bill_id==bill_id)
{
f=1;
break;
}
}
fclose(bifp);
if(f==1)
{
bifp=fopen("GBill.txt","r");
bifp1=fopen("GBill_1.txt","w");
while((fread(&bi,sizeof(bi),1,bifp))==1)
{
fwrite(&bi,sizeof(bi),1,bifp1);
}
fclose(bifp);
fclose(bifp1);
bifp=fopen("GBill.txt","w");
bifp1=fopen("GBill_1.txt","r");
while((fread(&bi,sizeof(bi),1,bifp1))==1)
{
if(bi.bill_id!=bill_id)
{
fwrite(&bi,sizeof(bi),1,bifp);
}
}
fclose(bifp1);
fclose(bifp);
printf("nntYOUR BILL HAS BEEN DELETED SUCCESSFULLY.");
}
else
{
printf("nntSORRY, YOUR BILL-ID DOES NOT MATCH.");
}
printf("nntPRESS 1. TO GO TO MAIN MENU nnt2. TO EXIT :- ");
scanf("%d",&q);
return q;
}
Output
C Programming :- An Example
C Programming :- An Example
C Programming :- An Example
C Programming :- An Example
C Programming :- An Example
C Programming :- An Example

Weitere ähnliche Inhalte

Was ist angesagt?

Os lab file c programs
Os lab file c programsOs lab file c programs
Os lab file c programsKandarp Tiwari
 
Basic Programs of C++
Basic Programs of C++Basic Programs of C++
Basic Programs of C++Bharat Kalia
 
Computer science project work
Computer science project workComputer science project work
Computer science project workrahulchamp2345
 
Sorting programs
Sorting programsSorting programs
Sorting programsVarun Garg
 
Lab manual operating system [cs 502 rgpv] (usefulsearch.org) (useful search)
Lab manual operating system [cs 502 rgpv] (usefulsearch.org)  (useful search)Lab manual operating system [cs 502 rgpv] (usefulsearch.org)  (useful search)
Lab manual operating system [cs 502 rgpv] (usefulsearch.org) (useful search)Make Mannan
 
Programs for Operating System
Programs for Operating SystemPrograms for Operating System
Programs for Operating SystemLPU
 
Travel management
Travel managementTravel management
Travel management1Parimal2
 
design and analysis of algorithm Lab files
design and analysis of algorithm Lab filesdesign and analysis of algorithm Lab files
design and analysis of algorithm Lab filesNitesh Dubey
 
Cn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshanCn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshanriturajj
 
Data Structures Practical File
Data Structures Practical File Data Structures Practical File
Data Structures Practical File Harjinder Singh
 
81818088 isc-class-xii-computer-science-project-java-programs
81818088 isc-class-xii-computer-science-project-java-programs81818088 isc-class-xii-computer-science-project-java-programs
81818088 isc-class-xii-computer-science-project-java-programsAbhishek Jena
 
Data Structures Using C Practical File
Data Structures Using C Practical File Data Structures Using C Practical File
Data Structures Using C Practical File Rahul Chugh
 
Geometric nonlinearity analysis of springs with rigid element displacement co...
Geometric nonlinearity analysis of springs with rigid element displacement co...Geometric nonlinearity analysis of springs with rigid element displacement co...
Geometric nonlinearity analysis of springs with rigid element displacement co...Salar Delavar Qashqai
 

Was ist angesagt? (20)

Os lab file c programs
Os lab file c programsOs lab file c programs
Os lab file c programs
 
Basic Programs of C++
Basic Programs of C++Basic Programs of C++
Basic Programs of C++
 
Implementing string
Implementing stringImplementing string
Implementing string
 
Computer science project work
Computer science project workComputer science project work
Computer science project work
 
Sorting programs
Sorting programsSorting programs
Sorting programs
 
Lab manual operating system [cs 502 rgpv] (usefulsearch.org) (useful search)
Lab manual operating system [cs 502 rgpv] (usefulsearch.org)  (useful search)Lab manual operating system [cs 502 rgpv] (usefulsearch.org)  (useful search)
Lab manual operating system [cs 502 rgpv] (usefulsearch.org) (useful search)
 
Cquestions
Cquestions Cquestions
Cquestions
 
C questions
C questionsC questions
C questions
 
Programs for Operating System
Programs for Operating SystemPrograms for Operating System
Programs for Operating System
 
Os lab 1st mid
Os lab 1st midOs lab 1st mid
Os lab 1st mid
 
Travel management
Travel managementTravel management
Travel management
 
design and analysis of algorithm Lab files
design and analysis of algorithm Lab filesdesign and analysis of algorithm Lab files
design and analysis of algorithm Lab files
 
Cn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshanCn os-lp lab manual k.roshan
Cn os-lp lab manual k.roshan
 
MongoDB
MongoDBMongoDB
MongoDB
 
Data Structures Practical File
Data Structures Practical File Data Structures Practical File
Data Structures Practical File
 
81818088 isc-class-xii-computer-science-project-java-programs
81818088 isc-class-xii-computer-science-project-java-programs81818088 isc-class-xii-computer-science-project-java-programs
81818088 isc-class-xii-computer-science-project-java-programs
 
Data Structures Using C Practical File
Data Structures Using C Practical File Data Structures Using C Practical File
Data Structures Using C Practical File
 
Geometric nonlinearity analysis of springs with rigid element displacement co...
Geometric nonlinearity analysis of springs with rigid element displacement co...Geometric nonlinearity analysis of springs with rigid element displacement co...
Geometric nonlinearity analysis of springs with rigid element displacement co...
 
C programming
C programmingC programming
C programming
 
Arrays
ArraysArrays
Arrays
 

Ähnlich wie C Programming :- An Example

Computer mai ns project
Computer mai ns projectComputer mai ns project
Computer mai ns projectAayush Mittal
 
Computer mai ns project
Computer mai ns projectComputer mai ns project
Computer mai ns projectAayush Mittal
 
#include stdio.h#include stdlib.h#include string.hstruct.pdf
#include stdio.h#include stdlib.h#include string.hstruct.pdf#include stdio.h#include stdlib.h#include string.hstruct.pdf
#include stdio.h#include stdlib.h#include string.hstruct.pdfanubhavnigam2608
 
深入淺出C語言
深入淺出C語言深入淺出C語言
深入淺出C語言Simen Li
 
C programs Set 2
C programs Set 2C programs Set 2
C programs Set 2Koshy Geoji
 
54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101premrings
 
C programming function
C  programming functionC  programming function
C programming functionargusacademy
 
C basics
C basicsC basics
C basicsMSc CST
 
Daapracticals 111105084852-phpapp02
Daapracticals 111105084852-phpapp02Daapracticals 111105084852-phpapp02
Daapracticals 111105084852-phpapp02Er Ritu Aggarwal
 
Cpd lecture im 207
Cpd lecture im 207Cpd lecture im 207
Cpd lecture im 207Syed Tanveer
 
Billing in a supermarket c++
Billing in a supermarket c++Billing in a supermarket c++
Billing in a supermarket c++varun arora
 
Lab. Programs in C
Lab. Programs in CLab. Programs in C
Lab. Programs in CSaket Pathak
 
C Prog - Pointers
C Prog - PointersC Prog - Pointers
C Prog - Pointersvinay arora
 
System Software/Operating Sytems lab report
System Software/Operating Sytems lab reportSystem Software/Operating Sytems lab report
System Software/Operating Sytems lab reportVishnu K N
 
System Software /Operating System Lab Report
System Software /Operating System Lab ReportSystem Software /Operating System Lab Report
System Software /Operating System Lab ReportVishnu K N
 

Ähnlich wie C Programming :- An Example (20)

Computer mai ns project
Computer mai ns projectComputer mai ns project
Computer mai ns project
 
Computer mai ns project
Computer mai ns projectComputer mai ns project
Computer mai ns project
 
#include stdio.h#include stdlib.h#include string.hstruct.pdf
#include stdio.h#include stdlib.h#include string.hstruct.pdf#include stdio.h#include stdlib.h#include string.hstruct.pdf
#include stdio.h#include stdlib.h#include string.hstruct.pdf
 
深入淺出C語言
深入淺出C語言深入淺出C語言
深入淺出C語言
 
C programs Set 2
C programs Set 2C programs Set 2
C programs Set 2
 
54602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee0108310154602399 c-examples-51-to-108-programe-ee01083101
54602399 c-examples-51-to-108-programe-ee01083101
 
9.C Programming
9.C Programming9.C Programming
9.C Programming
 
Cpds lab
Cpds labCpds lab
Cpds lab
 
C programming function
C  programming functionC  programming function
C programming function
 
C basics
C basicsC basics
C basics
 
Daapracticals 111105084852-phpapp02
Daapracticals 111105084852-phpapp02Daapracticals 111105084852-phpapp02
Daapracticals 111105084852-phpapp02
 
Cpd lecture im 207
Cpd lecture im 207Cpd lecture im 207
Cpd lecture im 207
 
Ds program-print
Ds program-printDs program-print
Ds program-print
 
Blocks+gcd入門
Blocks+gcd入門Blocks+gcd入門
Blocks+gcd入門
 
programs
programsprograms
programs
 
Billing in a supermarket c++
Billing in a supermarket c++Billing in a supermarket c++
Billing in a supermarket c++
 
Lab. Programs in C
Lab. Programs in CLab. Programs in C
Lab. Programs in C
 
C Prog - Pointers
C Prog - PointersC Prog - Pointers
C Prog - Pointers
 
System Software/Operating Sytems lab report
System Software/Operating Sytems lab reportSystem Software/Operating Sytems lab report
System Software/Operating Sytems lab report
 
System Software /Operating System Lab Report
System Software /Operating System Lab ReportSystem Software /Operating System Lab Report
System Software /Operating System Lab Report
 

Mehr von Atit Gaonkar

Straight Lines ( Especially For XI )
Straight Lines ( Especially For XI ) Straight Lines ( Especially For XI )
Straight Lines ( Especially For XI ) Atit Gaonkar
 
Spiking Neural P System
Spiking Neural P SystemSpiking Neural P System
Spiking Neural P SystemAtit Gaonkar
 
Newtons laws of motion
Newtons laws of motionNewtons laws of motion
Newtons laws of motionAtit Gaonkar
 
Metal Detector : A Working Model
Metal Detector : A Working ModelMetal Detector : A Working Model
Metal Detector : A Working ModelAtit Gaonkar
 
Hydrogen (hydrogen, water)
Hydrogen (hydrogen, water)Hydrogen (hydrogen, water)
Hydrogen (hydrogen, water)Atit Gaonkar
 
Blue bottle (Specially For School Demonstration)
Blue bottle (Specially For School Demonstration)Blue bottle (Specially For School Demonstration)
Blue bottle (Specially For School Demonstration)Atit Gaonkar
 
Transformers (Especially For 12th Std)
Transformers (Especially For 12th Std)Transformers (Especially For 12th Std)
Transformers (Especially For 12th Std)Atit Gaonkar
 

Mehr von Atit Gaonkar (9)

Straight Lines ( Especially For XI )
Straight Lines ( Especially For XI ) Straight Lines ( Especially For XI )
Straight Lines ( Especially For XI )
 
Spiking Neural P System
Spiking Neural P SystemSpiking Neural P System
Spiking Neural P System
 
Newtons laws of motion
Newtons laws of motionNewtons laws of motion
Newtons laws of motion
 
Metal Detector : A Working Model
Metal Detector : A Working ModelMetal Detector : A Working Model
Metal Detector : A Working Model
 
Hydrogen (hydrogen, water)
Hydrogen (hydrogen, water)Hydrogen (hydrogen, water)
Hydrogen (hydrogen, water)
 
Blue bottle (Specially For School Demonstration)
Blue bottle (Specially For School Demonstration)Blue bottle (Specially For School Demonstration)
Blue bottle (Specially For School Demonstration)
 
Magnetics
MagneticsMagnetics
Magnetics
 
Beat
BeatBeat
Beat
 
Transformers (Especially For 12th Std)
Transformers (Especially For 12th Std)Transformers (Especially For 12th Std)
Transformers (Especially For 12th Std)
 

Kürzlich hochgeladen

A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024Janet Corral
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 

Kürzlich hochgeladen (20)

A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
General AI for Medical Educators April 2024
General AI for Medical Educators April 2024General AI for Medical Educators April 2024
General AI for Medical Educators April 2024
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 

C Programming :- An Example