Answer Posted / babitha_b
Functions:
a)used to separate the task which would run frequently
b)run seperately the frequent task whenever calling that
frequent task and then returned its value to the fucntion
who called this.
c)would decrease the complexity of code and helps to debug
easier.
d)also it can be used as a library fucntion.
Structure:
declaring different types of variables and functions under
single name.
| Is This Answer Correct ? | 14 Yes | 11 No |
Post New Answer View All Answers
Explain how can I right-justify a string?
What are formal parameters?
What is the difference between array and structure in c?
How do you use a 'Local Block'?
Can we use any name in place of argv and argc as command line arguments?
What is pointers in c with example?
Are there constructors in c?
Can a pointer be static?
What is the sizeof () a pointer?
What is the heap?
c program for searching a student details among 10 student details
write a program to concatenation the string using switch case?
In C programming, what command or code can be used to determine if a number of odd or even?
What is the explanation for prototype function in c?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only