What is the meaning of typedef struct in c?
No Answer is Posted For this Question
Be the First to Post Answer
dibakar & vekatesh..uttejana here..abt ur reply for in place reversal of linked list..wats p stands for there?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
Explain the concept of "dangling pointers" in C.
What is printf () in c?
What is a memory leak in structures? How can we rectify that?
Explain the difference between null pointer and void pointer.
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
what is a stack
what is default constructor?
Write a program to find minimum between three no.s whithout using comparison operator.
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?
Why static variable is used in c?