Can you tell me how to check whether a linked list is circular?
If any node seems to be pointing towards the head or starting node then the linked list is circular. If no node is pointing to null.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is diference between return 0 and return NULL??
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
How can I implement opaque (abstract) data types in C? What's the difference between these two declarations? struct x1 { ... }; typedef struct { ... } x2;
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 are the languages used in c#?
What is keyword in c?
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
what is the size of an integer variable?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What are the storage classes in C?
How the processor registers can be used in C ?
what is a function method?give example?