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 is #line used for?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
what is the difference between. system call and library function?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
How can you increase the allowable number of simultaneously open files?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
Is multithreading possible in c?
Why static is used in c?