write a program using linked list in which each node
consists of following information.
Name[30]
Branch
Rollno
Telephone no
i) Write the program to add information of students in
linked list


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

Post New Answer

More C Interview Questions

write a program for fibonaci series by using while loop in c?

2 Answers  


write a program to display the numbers in the following 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4

1 Answers  


wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }

3 Answers  


We can draw a box in cprogram by using only one printf();& without using graphic.h header file?

4 Answers   NIIT,


Is c procedural or functional?

0 Answers  






i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


what is the maximum no. of bytes calloc can allocate

4 Answers   Mphasis,


i want to have a program to read a string and print the frequency of each character and it should work in turbo c

3 Answers   Persistent, Wipro,


What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?

1 Answers  


main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }

6 Answers  


Why enum is used in c?

0 Answers  


What language is c written?

0 Answers  


Categories