What are lookup tables in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the use of a semicolon (;) at the end of every program statement?
how to find anagram without using string functions using only loops in c programming
What are the two types of functions in c?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
du u know test pattern for robosoft? Plz share
1 Answers RoboSoft, TATA, Wipro,
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..
Why should I use standard library functions instead of writing my own?
if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 Answers Parexel, Ram Infotech, Zycus Infotech,
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
how to find your architecture is LittleEndian or BigEndian?
How can I convert integers to binary or hexadecimal?
Who developed c language and when?