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
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
Explain which function in c can be used to append a string to another string?
Who is the founder of c language?
How Many Header Files in c?
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
Which control loop is recommended if you have to execute set of statements for fixed number of times?
what is link list?
How can I implement a delay, or time a users response, with sub-second resolution?
Explain the difference between exit() and _exit() function?
What is register variable in c language?
Who is invented by c?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?