Computer Science, asked by raginitarkeshwoub4mv, 8 months ago

Write a program to create a function void result( ) with one integer

argument to input roll number and three double type parameters to

input marks in three subjects .calculate total marks, percentage. Print the

output with proper headings.​

Answers

Answered by devivibha04
0

Answer:

we will learn functions in C programming. A function is a block of statements that performs a specific task. Let’s say you are writing a C program and you need to perform a same task in that program more than once. In such case you have two options:

a) Use the same set of statements every time you want to perform the task

b) Create a function to perform that task, and just call it every time you need to perform that task.

Using option (b) is a good practice and a good programmer always uses functions while writing code in C.

Why we need functions in C

Functions are used because of following reasons –

a) To improve the readability of code.

b) Improves the reusability of the code, same function can be used in any program rather than writing the same code from scratch.

c) Debugging of the code would be easier if you use functions, as errors are easy to be traced.

d) Reduces the size of the code, duplicate set of statements are replaced by function calls.

Similar questions