we compile c program in 32 processor and 64 bit processor
.exe file is created in both the processors. if we want to
run .exe file in 64 bit processor which is created in 32 bit
processor. is that .exe file is run or not if it is not run why?
Answers were Sorted based on User's Feedback
Answer / anil
64-bit OS usually comes up with 32-bit emulations also.
That's why we will be able to run 32-bit app on a 64-bit OS.
More precisely 64-bit architecture is a super-set of 32-bit.
| Is This Answer Correct ? | 7 Yes | 2 No |
Who developed c language and when?
What are register variables? What are the advantage of using register variables?
What are multibyte characters?
where can function pointers be used?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
Tell us the use of fflush() function in c language?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What is cohesion in c?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How does memset() work in C?
What is the difference between GETS();AND SCANF();
What is the use of gets and puts?