Computer Science, asked by imteyazhaidry1121, 11 months ago

Choose the correct option :
______ improve the readability of C programs to some extent.
A. Variable
B. Function
C. User defined data types
D. None of the given

Answers

Answered by sumanta22
2
b option is the correct.

imteyazhaidry1121: Thanks
sumanta22: welcm
Answered by aditijaink283
0

Answer:

The correct answer to the given question is:

B) Function

Explanation:

Function improves the readability of C programs to some extent.

Functions are used to perform specific tasks and are important for code reuse. Data called parameters can be passed to functions. Define your code once and use it multiple times. Every C program has at least one function, main(), and every simplest program can define additional functions.

Code can be split into separate functions. How you divide your code into different functions is up to you, but the logical division is that each function performs a specific task. A function declaration tells the compiler the function name, return type, and parameters.

The C standard library provides many built-in functions that programs can call. For example, strcat() concatenates two strings, memcpy() copies one memory location to another, and uses many other functions. Functions can also be called methods, subroutines, procedures, etc.

#SPJ2

Similar questions