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
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
What is the difference between near, far and huge pointers?
What is a lvalue
What are the advantages of using linked list for tree construction?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
How to write c functions that modify head pointer of a linked list?
Explain what are linked list?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
what is difference between strcmp & palindrome?