Was 2000 a leap year?
No Answer is Posted For this Question
Be the First to Post Answer
What is keyword with example?
Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.
How can I manipulate strings of multibyte characters?
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
how to get the starting address of file stored in harddisk through 'C'program.
What is the size of enum in c?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
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,
How many types of arrays are there in c?
what is ram?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
Is it better to use malloc() or calloc()?