if p is a string contained in a string?
No Answer is Posted For this Question
Be the First to Post Answer
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
What are the types of functions in c?
What are the average number of comparisons required to sort 3 elements?
Why do we use return in c?
What is an array in c?
What will be the output of x++ + ++x?
what are the interview question's in the language c
What is the use of sizeof () in c?
what is the use of #pragma pack, wer it is used?
What are the benefits of c language?
What is the difference between the = symbol and == symbol?
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....