What is a pointer?
Answer / gsrinivas
pointer is variable which stores the address of the memory
location
| Is This Answer Correct ? | 26 Yes | 2 No |
What is the difference between far and near ?
Blade logic interview question. 1st round is a written tests with 15 multiple questions from c and c++. All are simple basic question. Like int main () { Int i=65; Return printf(ā%cā, i); } 2nd and 3rd round is technical interview. The position for which I was interview was core UNIX and c. Yes it is for system programming. The company has product name blade server. For their server they are creating their own command for their purpose. Example cd command. We can implement it in a c program by using the chdir() function. So the question asks related to PID, fork, pipe, shared memory, signal. Write a program in c which will act as cp command.
1 Answers BladeLogic, Infosys,
Which is better between malloc and calloc?
Explain how can I prevent another program from modifying part of a file that I am modifying?
what is the basis for selection of arrays or pointers as data structure in a program
How Many Header Files in c?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
How can you read a directory in a C program?
how to return 1000 variables from functio9n in c?plz give me code also
Is main is a keyword in c?
Can we increase size of array in c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant