What is this infamous null pointer, anyway?
No Answer is Posted For this Question
Be the First to Post Answer
What is hungarian notation? Is it worthwhile?
Write the control statements in C language
write a program to print data of 5 five students with structures?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
how to swap 4 number without using temporary number?
What is the use of #define preprocessor in c?
What is "Duff's Device"?
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,
please give me some tips for the selection in TCS.
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?