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
What is the difference between strcpy() and memcpy() function in c programming?
What is the relation between # and include<stdio.h>
a simple c program using 'for' loop to display the output 5 4 3 2 1
Write a routine that prints out a 2-D array in spiral order!
write a program to find the largest and second largest integer from an array
What is the size of structure pointer in c?
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
c program to subtract between two numbers without using '-' sign and subtract function.
difference between c and c++
I need previous papers of CSC.......plz help out by posting them.......
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort