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
Is c easy to learn?
what is the difference between exit() and _exit() functions?
How many types of functions are there in c?
triangle number finding program...
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
Explain command-line arguments in C.
Tell me a C program to display the following Output? 1 1 1 1 1 2 2 2 2 3 3 3 4 4 5
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
What are bit fields? What is their use?
list the no of files created when c source file is compiled
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?