Explain what are linked list?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why does everyone say not to use scanf? What should I use instead?

0 Answers  


Given an unsigned integer, find if the number is power of 2?

5 Answers  


code for find determinent of amatrix

0 Answers  


What is pointer & why it is used?

0 Answers  


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,






Explain what is the benefit of using enum to declare a constant?

0 Answers  


stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

0 Answers  


what is the use of ‘auto’ keyword?

1 Answers  


Why c is called procedure oriented language?

0 Answers  


Write a program to print factorial of given number without using recursion?

0 Answers  


Write a program to show the workingof auto variable.

2 Answers   Infotech,


what is c language?

2 Answers  


Categories