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
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
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
How can a process change an environment variable in its caller?
Can we initialize extern variable in c?
What are header files and explain what are its uses in c programming?
What is the difference between the expression “++a” and “a++”?
What is the use of ?: Operator?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What does 3 mean in texting?
What is a static function in c?
How do you define a string?
What is a const pointer in c?
List a few unconditional control statement in c.
What is use of bit field?
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(); }