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
write a c program to find biggest of 3 number without relational operator?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
What is volatile
You have an array of n integers, randomly ordered with value 1 to n-1.The array is such that there is only one and one value occurred twice. How will you find this number?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
Explain that why C is procedural?
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
How do you determine whether to use a stream function or a low-level function?
Find string palindrome 10marks
5 Answers Honeywell, Infosys, Riktam, Roland,
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
How can type-insensitive macros be created?
What does int main () mean?