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
Who developed c language and when?
what is c language?
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
what is the code to display color fonts in the output?
Give a fast way to multiply a number by 7
15 Answers Accenture, Aricent, Microsoft,
Which is better oop or procedural?
how to sort two array of characters and make a new array of characters.
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is the difference between c &c++?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What is const and volatile in c?
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.