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
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is indirection? How many levels of pointers can you have?
What does the characters “r” and “w” mean when writing programs that will make use of files?
what is the function of pragma directive in c?
difference between native and cross compilers
Write a program to print "hello world" without using a semicolon?
What does 1f stand for?
Can i use “int” data type to store the value 32768? Why?
What are the different types of pointers used in c language?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What are the restrictions of a modulus operator?
What is c value paradox explain?
What is the use of linkage in c language?
Is javascript written in c?