How to Throw some light on the splay trees?
No Answer is Posted For this Question
Be the First to Post Answer
Which is better pointer or array?
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
IS Doon college of Engn.. has good faculty
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
Are the expressions * ptr ++ and ++ * ptr same?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
wite a programme in c to linear search a data using flag and without using flags?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
without a terminator how can we print a message in a printf () function.
if we take a number as a char then can we manipulate(add, subtract) on this number
Are the variables argc and argv are always local to main?
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)