C Mini Project
C Mini Project
DONE BY:-
KARTHIK SAI AMBATI
RA2211003011032
SRAVAN KUMAR K
RA2211003011057
PROJECT OVERVIEW
We have developed our code using c language. The main concept of this
program is to take the input of data from the user so that making him
convenient to give the input and choose their venue and time according
to their convienience.
Our program is a real world project and it can be developed further for
large number of users . as of now only 4 inputs can be taken.
The reason to develop the program is to clear the difficulties that took
place duing the pandemic.
We have tried our level best to demonstrate the program for the end
users.
Thank you.
C PROJECT SOURCE CODE
C PROJECT CODE
#include <conio.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Defining Structure
typedef struct mynode {
char name[20];
char gen[6];
char idtype[40];
char id[20];
char mob[20];
char comor[3];
struct mynode* link;
} Node;
Node* start = NULL;
// Global Variables
int n;
char state[20], dis[20], hos[40], date[12], hour[6];
// Driver Code
void main()
{
details();
venue();
receipt();
}