Programming report on calender program PDF

Title Programming report on calender program
Author khadija basharat
Course Programming Fundamentals
Institution University of Engineering and Technology Lahore
Pages 12
File Size 531.6 KB
File Type PDF
Total Downloads 16
Total Views 145

Summary

Download Programming report on calender program PDF


Description

B.Sc Electrical Engineering Project report “Making a calendar”

Submitted by:

Project Programming project

Department Of Electrical Engineering Faculty of Engineering Lahore College for Women University, Lahore 2019 July 2018

Declaration: I hereby declare that the project work entitled “calendar program” submitted to the Mam Roufa Asghar, supervisor of BS II in D e p t O f Electrical Engineering in Lahore college for women u n i v e r s i t y, , and this project work is submitted in the partial fulfillment of our final examination project of 2 0 1 9 .we are there group members and we prepared this report by working together. Sidra Hanif Malaika Asif Khadija Bashara

Table of contents: Problem statement………………………………………………………….4 Introduction………………............................................................................4 Objectives……………………………………………………………………4 Abstract………………………………………………………………………4 Background knowledge………………………………………………………4 Body of project………………………………………………………………5 1) 2) 3) 4) 5) 6)

Libraries………………………………..............................5 Functions…………………………………………………6 Do statement……………………………………………..7 For loop………………………………………………….9 Out-put…………………………………………………..10 Flow chart………………………………………………..11

Refrences………………………………………………………………………………………………………12

Problem statement: Making a calendar of an year in c language

Objectives:           

Planning our daily activities Keeping a track of events Staying organized and enhancing productivity Managing a daily schedule Remembering important dates Alleviating anxiety and stress Knowing the important festival dates Remembering birthdays and keeping commitments useful exposure to the C Programming language work effectively as a group and manage all the tasks effectively learning & inhance our ability in C PROGRAMMING

Introduction: "This report has described the successful design and development of a calendar program.This report outlines the design and development of a computer software system to code blocks. The program was written in C language. Basically three operations can be done in this calendar application. To find out the day corresponding to a given date, the date, month and year are asked. You can list the days and dates of any month of any year.

Abstract: It,s a calendar program which will prints a calendar of our whole year.The purpose if this program is to basically learning of our C language in programming. The calendar program application presented here is a very simple console application developed using C programming language. It is built without using any graphic properties: instead it utilizes many windows properties to give application a colorful look and feel. It is compiled in code::blocks using GCC compiler.

Background knowledge: Any computer software or application requires some form of programming to run effectively and perform a desired task.from simple word processing to managing bank accounts,programming has become a very versatile and powerfultool in themodern world. C programming first appeared in 1972 having been developed by Dennis Ritchie, though programming techniques and languages had been around for a lot longer. 1978 proved to be breakthrough year when Brian Kernighan and Dennis Ritchie published “The C programming

language”. This book became an informal specification for the C programming language, though it referred to the early versions known as “K&R C” named after theauthors’ initials. Standardisation and definition of the language was established by the American National Standards Institute in 1983 and from there the C language has becomeone of the most popular and versatile tools used by programmers. As a group our first exposure to C programming was the simple yet famous “hello world!”program. The following construct illustrates this simple program and shows some of thesyntax used.

As a language, C is relatively easy to learn though it is more cryptic and example above isbroken down into the following steps: the #include is a pre-processor directive. The pre-processor is the first tool to read the source code and it is instructed to substitute the entireline with the . The next line indicates that a function named “ main” is being defined. The “main” function serves a special purpose in C programming; it is used to beginprogram execution. The “int” is a type specifier and its purpose is to indicate that the valuereturned to the invoker as a result of reading the main function, is an integer. The keyword“void” as a parameter list indicates that the main function takes no arguments. #include int main(void){ printf("hello world\n");return 0;}

Body of project: Libraries: This project includes two libraries: 1) #include...


Similar Free PDFs