Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
No Answer is Posted For this Question
Be the First to Post Answer
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Is c is a procedural language?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Is exit(status) truly equivalent to returning the same status from main?
What is the difference between constant pointer and pointer to a constant. Give examples.
What is return type in c?
A program to allow an input operand and operator from the operator and read on the display and output operand.
implement general tree using link list
Explain indirection?
do you think its fraud or original company?
The program to allow the characters from the input received and send this function to a function check if the characters between letters a to z is a function of y joins as the characters main and output to otherwise return to the original function of the y characters
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }