why in C,C++'s int size is 2 byte and .net(c#) int Size is 4
byte?
Answer Posted / 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 |
Post New Answer View All Answers
Can you write the function prototype, definition and mention the other requirements.
When is a “switch” statement preferable over an “if” statement?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Which programming language is best for getting job 2020?
What is use of bit field?
Explain how can I write functions that take a variable number of arguments?
In C, What is the #line used for?
What is pointers in c with example?
Why clrscr is used after variable declaration?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
When should the register modifier be used? Does it really help?
How arrays can be passed to a user defined function
What is actual argument?
Are pointers really faster than arrays?
Explain spaghetti programming?