how the size of an integer is decided?
- is it based on processor or compiler or OS?
Answer Posted / mrutyunjay sawant
its depends upon word length of processor
Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How do you redirect a standard stream?
Are there namespaces in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Explain the Difference between the New and Malloc keyword.
Tell me when would you use a pointer to a function?
What does sizeof int return?
What is the difference between arrays and pointers?
What is c language & why it is used?
explain what is an endless loop?
Did c have any year 2000 problems?
What is a scope resolution operator in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
How we can insert comments in a c program?
How can a number be converted to a string?
What is the use of ?