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
2755List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
2702write an algorithm and a program to count the number of elements in a circularly singly linked list
1 13970Hi Every one...........I have been selected for the SBI Clerk. But i m one month Pregnanat. So anyone please suggest me, is they take any objection on my joining .
4 7084what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
4 6441Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
2 11994/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
6 15501though sbi was nationalized why its not comes under nationalized banks and its comes under publicsector banks
3 14423please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
2 5159
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is array of structure in c?
How can I manipulate individual bits?
What is the difference between near, far and huge pointers?
What are the types of functions in c?
How can you find the day of the week given the date?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What are external variables in c?
Explain what is the difference between #include and #include 'file' ?
What is wrong with this statement? Myname = 'robin';
What is wrong with this program statement?
Explain how can you determine the size of an allocated portion of memory?
What is ponter?
explain what is a newline escape sequence?