What are valid signatures for the Main function?
No Answer is Posted For this Question
Be the First to Post Answer
Tell us two differences between new () and malloc ()?
How. To pass the entrance test
why ordinary variable store the later value not the initial
What are the disadvantages of a shell structure?
say the following declaration is correct nr not. int b=a,n=0;
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
How do I declare a pointer to an array?
write a program to sort the elements in a given array in c language
Dont ansi function prototypes render lint obsolete?
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..
Which command is more efficient? *(ptr+1) or ptr[1]
Is multithreading possible in c?