a linear linked list such that the link field of its last node points to the first node instead of containing NULL
a) linked list
b) circular linked list
c) sequential linked list
d) none
No Answer is Posted For this Question
Be the First to Post Answer
Is python a c language?
How to implement call back functions ?
what is mean by Garbage collection ? Please answer me. Advance thanks.
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
How can I set an array's size at run time?
biggest of two no's with out using if condition statement
. Explain the differences between fork() and exec() in C
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
wat is the difference between array and pointer?
Print all numbers which has a certain digit in a certain position eg: number=45687 1 number=4 2 number=5 etc
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
what do you mean by defining a variable in our c code?