long int size
a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes
Answer Posted / jitender mahender
long int occupies 4 bytes in memory.
| Is This Answer Correct ? | 38 Yes | 27 No |
Post New Answer View All Answers
What are the 4 data types?
What does %2f mean in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
How can my program discover the complete pathname to the executable from which it was invoked?
Explain About fork()?
What is a nested formula?
Explain how can you restore a redirected standard stream?
What is the right way to use errno?
What is memory leak in c?
Why is not a pointer null after calling free?
Explain how does free() know explain how much memory to release?
What are the advantages of using new operator as compared to the function malloc ()?
How do you determine a file’s attributes?
How can a program be made to print the line number where an error occurs?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }