0% found this document useful (0 votes)
19 views1 page

Lab 7

The document provides programming exercises divided into four sections - Structure, Pointer, Files handling, and Graphics. The Structure section includes exercises to store student and book data using structures. The Pointer section covers exercises using pointers to pass values to functions, copy arrays, sort numbers, and add matrices. The Files handling section has exercises to store even and odd numbers in files. The Graphics section lists exercises to draw basic shapes like points, lines, arcs, ellipses, circles, rectangles, and triangles.

Uploaded by

Bishal Shahi
Copyright
© © All Rights Reserved
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
Download as doc, pdf, or txt
0% found this document useful (0 votes)
19 views1 page

Lab 7

The document provides programming exercises divided into four sections - Structure, Pointer, Files handling, and Graphics. The Structure section includes exercises to store student and book data using structures. The Pointer section covers exercises using pointers to pass values to functions, copy arrays, sort numbers, and add matrices. The Files handling section has exercises to store even and odd numbers in files. The Graphics section lists exercises to draw basic shapes like points, lines, arcs, ellipses, circles, rectangles, and triangles.

Uploaded by

Bishal Shahi
Copyright
© © All Rights Reserved
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1/ 1

Structure:

1. Write a Program to store bio-data of 100 students in a class that includes name,
roll number, address, DOB using structure.
2. Write a program using structure of booklist having data member's title, author
and cost. Enter four data and calculate total cost.
3. Write a program to compute total marks and percentage of N student of BSc.
CSIT First Semester, with student name and roll no using structure.
4. Write A Program to compute size of structure and union.

Pointer:
5. Write a program to find area, perimeter of square by passing pointer to function.
6. Write a program to store marks of 100 students by passing array elements to a
function.
7. Write a program that uses pointers to copy an array of integer.
8. Write a program to accept numbers and sort them with using pointers.
9. Write a program to swap two numbers.
10. Write a program to add 2 matrices using pointers.

Files handling:
11. Write a program which accept a series of integer numbers from the user and
stores all odd numbers in a file name odd.txt and all even numbers in a file name
even.txt.
12. Write a program to create and count numbers of character in a file.

Graphics:
13. Write a program to plot a point on the monitor.
14. Write a program to draw a line.
15. Write a program to draw an arc.
16. Write a program to draw an ellipse.
17. Write a program to draw a circle.
18. Write a program to draw a rectangle.
19. Write a program to draw a triangle.

You might also like