How can I do peek and poke in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is identifier in c?
p*=(++q)++*--p when p=q=1 while(q<=6)
Mention four important string handling functions in c languages .
Where is volatile variable stored?
Can we include one C program into another C program if yes how?
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
What is the use of the restrict keyword?
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,
what is the definition of storage classes?
2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
I came across some code that puts a (void) cast before each call to printf. Why?