Write a c program to print the sizes and ranges of different
data types in c?
What is the difference between Printf(..) and sprint(...) ?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is a macro?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
Why can’t constant values be used to define an array’s initial size?
what are the files which are automatically opened when a c file is executed?
Who invented b language?
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..
What does static variable mean in c?
Is c programming hard?
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
What is integer constants?