find the size of structure without using the size of function
Answer / vinay
struct abc
{
-------------
--------------
-------------
};
struct abc arr[2];
difference btw arr[2] and arr[1]
| Is This Answer Correct ? | 6 Yes | 1 No |
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
What are file streams?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is the size of structure pointer in c?
who is the founder of c
19 Answers College School Exams Tests, HP,
how do you programme Carrier Sense Multiple Access
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
Why calloc is better than malloc?
Explain about the constants which help in debugging?
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
What are local static variables?