Write a programme using structure that create a record of
students. The user allow to add a record and delete a record
and also show the records in ascending order.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

write a program to print calender using for loop.

1 Answers   HCL, TCS,


What does %c mean in c?

0 Answers  


Is there any data type in c with variable size?

0 Answers  


C program to read the integer and calculate sum and average using single dimensional array

0 Answers  


What are the types of type qualifiers in c?

0 Answers  






What is infinite loop?

0 Answers  


consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none

7 Answers   TCS,


What are the types of pointers?

0 Answers  


can we implement multi-threads in c.

0 Answers  


How can I make sure that my program is the only one accessing a file?

0 Answers  


if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?

4 Answers   Amazon, Apple, Bata, Google, NASA,


find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }

10 Answers   Amdocs, TCS,


Categories