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);
}
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
ABCDCBA ABC CBA AB BA A A
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
mplementation of stack using any programing language
What is the difference between a string and an array?
Explain what a Binary Search Tree is.
Is sizeof a keyword in c?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
diff .between strcture and union
What is chain pointer in c?
What is page thrashing?
What is the stack in c?