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
Explain the process of converting a Tree into a Binary Tree.
Why is c called "mother" language?
What is a keyword?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
Do you have any idea about the use of "auto" keyword?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What does the error 'Null Pointer Assignment' mean and what causes this error?
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
Between macros and functions,which is better to use and why?
how to create duplicate link list using C???
In C language, a variable name cannot contain?
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer