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
No Answer is Posted For this Question
Be the First to Post Answer
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is the real time usage volatile?
main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 Answers NDS, TCS,
How do you use a pointer to a function?
Write a C++ program without using any loop (if, for, while etc) to print numbers from 1 to 100 and 100 to 1;
18 Answers Accenture, Cisco, Egentec, HCL, Ideaz, Infosys, M-Systems, MYR, TCS,
Write a program with dynamically allocation of variable.
What is the scope of an external variable in c?
write a progrmm in c language take user interface generate table using for loop?
Is multithreading possible in c?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is a buffer in c?
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?