Posts

Showing posts from October, 2022

Phone Dictionary Application in c

Image
Follow on LinkedIn  Phone Dictionary Application in c Project Created by :  SHRADDHA NAND PANDEY SHUBHAM KUMAR PODDAR RAHUL KUMAR PRASAD KETAN GUPTA  #include <stdio.h> #include <conio.h> #include <string.h> #include <stdlib.h> #include <windows.h> struct person  // Structure is declared {     char name [ 35 ];     char address [ 50 ];     long int mble_no ;     }; void menu (); void got (); void start (); void back (); void addrecord (); void listrecord (); void modifyrecord (); void deleterecord (); void searchrecord (); int main () {     system ( "color 9f" ) ; // to color the screen     start () ;     return 0 ; } void back () {     start () ; } void start () {     menu () ; } void menu () {     system ( "cls" ) ; printf ( " \t\t **********WELCOME TO PHONE DICTIONARY*************" ) ; printf ( " \n\n\t\t\t  MENU \t\t\n\n " ) ; printf ( " \t 1.Add New   \t 2.List   \t 3.Exit