long int size
a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes

Answer Posted / dhiraj

Its always complier depended and the reason for this is
that int is always map to the word size of that processor.

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array

880


Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff

2718


How can a process change an environment variable in its caller?

908


Can we initialize extern variable in c?

845


What are header files and explain what are its uses in c programming?

817


What is the difference between the expression “++a” and “a++”?

819


What is the use of ?: Operator?

880


In C programming, how do you insert quote characters (‘ and “) into the output screen?

1202


What does 3 mean in texting?

807


What is a static function in c?

814


How do you define a string?

838


What is a const pointer in c?

848


List a few unconditional control statement in c.

737


What is use of bit field?

982


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(); }

2046