any function have arguments one or more OR not . it is compulsary
a) any function compulsary have one or more arguments
b) any function did not have arguments. It is not compulsary
c) it is optional it is not compulsary
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
which is faster execution: loops or recursion?
what is an array
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Ow can I insert or delete a line (or record) in the middle of a file?
Why is c fast?
What do you mean by a local block?
What is a pointer and how it is initialized?
errors in computer programmes are called
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year