Using functions, write a program that multiplies two arrays.
Use the following functions:
- Function ReadArray
- Function MultiplyArrays
- Function DisplayArrays
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output of this program? void main() { int a[]={5,10,15}; int i=0,num; num=a[++i] + ++i +(++i); printf("%d",num); }
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code
What are the types of operators in c?
Explain high-order and low-order bytes.
Find MAXIMUM of three distinct integers using a single C statement
How will you divide two numbers in a MACRO?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
In C language what is a 'dangling pointer'?
Where local variables are stored in c?
What is the use of linkage in c language?
What is the condition that is applied with ?: Operator?
What is the benefit of using const for declaring constants?