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?
Answer Posted / 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 |
Post New Answer View All Answers
Explain what is the difference between the expression '++a' and 'a++'?
How to declare pointer variables?
What is a file descriptor in c?
Give basis knowledge of web designing ...
If the size of int data type is two bytes, what is the range of signed int data type?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What are identifiers in c?
Why do we use static in c?
Is printf a keyword?
Explain enumerated types in c language?
What are the 5 organizational structures?
What is a struct c#?
int i=10; printf("%d %d %d", i, i=20, i);
Where is volatile variable stored?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?