You are on page 1of 9

TERM PAPER

Topic: Career Guidance System

NameSectionRoll no.Reg. no.Submitted to:

INTRODUCTION This term paper is all about Career guidance system which is a software developed in C. With the help of this software one can get a brief idea about various career opportunities in different fields according to their qualification.

Acknowledgement No work in this world is a solo effort. This term paper is not the exception. I would like to thank god who blessed me so that I can put my effort in this. I can never forget the help and support from my Computer science teacher (Class teacher ) who listened to my queries even after her busy schedule and gave solution to my problems. The discussion that I did with my classmates was also very useful for me so without thanking them, this term paper is incomplete.

Source Code

#include<stdio.h> #include<conio.h> void matric(); void enter(); void grad(); void matric_manag(); void matric_engg(); void matric_commerce(); void matric_arch(); void matric_fashion(); void enter_manag(); void enter_engg(); void enter_commerce(); void enter_arch(); void enter_fashion(); void grad_manag(); void grad_engg(); void grad_commerce(); void grad_arch() ; void grad_fashion(); void return1(); int n4; void main() {int n; printf("WELCOME TO CAREER GUIDANCE SYSTEM"); printf("Enter Your Qualification"); printf("\n1.Matric\n 2.10+2\n 3. Graduation"); scanf("%d",&n); switch(n) {case 1: matric(); break; case 2: enter(); break; case 3: grad(); break; default: printf("Invalid");

} getch(); } void matric() {int n1; printf("Enter the field code you want to know"); printf("\n 1. MANAGEMENT \n 2. ENGINEERING \n 3.COMMERCE\n 4. ARCHITECTURE\n 5. FASHION TECHNOLOGY\n"); scanf("%d",&n1); switch(n1) {case 1: matric_manag(); break; case 2: matric_engg(); break; case 3: matric_commerce(); break; case 4: matric_arch(); break; case 5: matric_fashion(); break; default: printf("Enter a valid choice"); } } void enter() {int n2; printf("Enter the field code you want to know"); printf("\n 1. MANAGEMENT \n 2. ENGINEERING \n 3.COMMERCE\n 4. ARCHITECTURE\n 5. FASHION TECHNOLOGY\n"); scanf("%d",&n2); switch(n2) {case 1: enter_manag(); break; case 2:

enter_engg(); break; case 3: enter_commerce(); break; case 4: enter_arch(); break; case 5: enter_fashion(); break; default: printf("Enter a valid choice"); } } void grad() {int n3; printf("Enter the field code you want to know"); printf("\n 1. MANAGEMENT \n 2. ENGINEERING \n 3.COMMERCE\n 4. ARCHITECTURE\n 5. FASHION TECHNOLOGY\n"); scanf("%d",&n3); switch(n3) {case 1: grad_manag(); break; case 2: grad_engg(); break; case 3: grad_commerce(); break; case 4: grad_arch(); break; case 5: grad_fashion(); break; default: printf("Enter a valid choice"); }

} void matric_manag() {printf("Sorry there is no course"); } void matric_engg() {printf("Course: Diploma(engg.)\n Time duration: 3 yrs.\n Fee: 25000 per sem"); } void matric_commerce() {printf("You can take commerce as a subject in 10+2"); } void matric_arch() {printf("Course:Diploma in architectural assistantship\n Time duration: 3 yrs. \nFee: 16,000 per sem"); } void matric_fashion() {printf("Course: Diploma in fashion design\n Time duration: 3 yrs. Fee: 22,000 per sem"); } void enter_manag() {printf("Course: BBA\n Time duration: 3yrs.\n Fee: 26000 per sem"); } void enter_engg() {printf("Course: B.Tech. \n Time duration: 4 yrs. \n Fee : 59,000 per sem"); } void enter_commerce() {printf("Course: B.Com.\n Time duration: 3 yrs. \n Fee: 20,000 per sem"); } void enter_arch() {printf("Course:B.Arch. \n Time duration: 5 yrs. \n Fee: 55,000 per sem"); } void enter_fashion() {printf("Course: B.Sc. Fashion technology\n Time duration:3 yrs.\n Fee:30,000 per sem"); } void grad_manag()

{printf("Course:MBA \n Time duration: 2 yrs. \n Fee: 40000 per sem"); } void grad_engg() {printf("Course : M.Tech. Time duration: 2 yrs. Fee: 45,000 per sem"); } void grad_commerce() {printf("Course: M.Com.(Full time)\n Time duration: 2 yrs. \n Fee: 25,000 per sem"); } void grad_arch() {printf("There is no information available about architecture after graduation"); } void grad_fashion() {printf("Course: M.Sc. Fashion technology\n Time duration: 2 yrs. \n Fee: 35,000/-"); } References: 1. www.cprogramming.com 2. Let us C: Yaswant Kanethkar. 3. Programming with ANSI and Turbo C.

Output: Output will be as follows in different courses:

You might also like