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 |
When should the register modifier be used? Does it really help?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
Write a c program to print the even numbers followed by odd numbers in an array without using additional array
What is the role of && operator in a program code?
code for bubble sort?
What are different storage class specifiers in c?
What language is lisp written in?
Is there any demerits of using pointer?
What is the use of ?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Is Exception handling possible in c language?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.