why in C,C++'s int size is 2 byte and .net(c#) int Size is 4
byte?
Answers were Sorted based on User's Feedback
Answer / mohit
because c and c++ language use ASCII code system.but in .net
and java use UNICODE system. where char size also 2byte.
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / king
according to me, c,c++ is the base of pop and oop all language. any person learn any language in deep then his/her base language is clear. so the c and c++ language is most used clear to base logic of all people.so it's int type occupies 2 byte only whereas .net language is used enterprize level and professional level to make application,this language is not used to clear base logic but used to make enterprize and web based application,in web based or professional application numeric variable requirement wide range,in this place 2 byte is less to used in application so the increased size of int in .net language to used wide range of size to make perfect enterprize application and standlone application..(eg. viza card,credit card,ATM card,passport,etc's number is very long)
| Is This Answer Correct ? | 6 Yes | 6 No |
What is 2 d array in c?
write a program to print infinte number
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
What is the function of multilevel pointer in c?
What is typedef struct in c?
Whether there can be main inside another main?If so how does it work?
the operator for exponencation is a.** b.^ c.% d.not available
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
Explain what is a const pointer?
What is the difference between new and malloc functions?
Explain what is the difference between a string and an array?
Write a program to check whether a number is prime or not using c?