how the size of an integer is decided?
- is it based on processor or compiler or OS?
Answer Posted / rahul
definitely os bcoz.c compiler occupies 2 bytes in windows
where as the same c compiler occupies 4 bytes in linux.
| Is This Answer Correct ? | 3 Yes | 11 No |
Post New Answer View All Answers
What are the characteristics of arrays in c?
What is string function in c?
Write a code to remove duplicates in a string.
Can variables be declared anywhere in c?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
Is it cc or c in a letter?
What is a string?
Explain how can I write functions that take a variable number of arguments?
What are the types of data files?
Is boolean a datatype in c?
Is c procedural or functional?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Describe explain how arrays can be passed to a user defined function
Why do we use namespace feature?
What are dangling pointers? How are dangling pointers different from memory leaks?