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



we compile c program in 32 processor and 64 bit processor .exe file is created in both the processo..

Answer / sasmita lenka

it l run

Is This Answer Correct ?    12 Yes 3 No

we compile c program in 32 processor and 64 bit processor .exe file is created in both the processo..

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

we compile c program in 32 processor and 64 bit processor .exe file is created in both the processo..

Answer / sagar

no it wont

Is This Answer Correct ?    4 Yes 2 No

we compile c program in 32 processor and 64 bit processor .exe file is created in both the processo..

Answer / harinadhbabu

run

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables

2 Answers   TCS,


Explain the priority queues?

0 Answers  


What are the valid places to have keyword “break”?

0 Answers  


Where local variables are stored in c?

0 Answers  


What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }

8 Answers   MindFire, TCS, Tech Mahindra,






What is the correct code to have following output in c using nested for loop?

0 Answers  


here is a link to download Let_Us_C_-_Yashwant_Kanetkar

3 Answers   Microsoft,


what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175

5 Answers   Wipro,


if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?

9 Answers   Wipro,


2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above

4 Answers   Siemens,


How can I find out how much free space is available on disk?

0 Answers  


What is 2 d array in c?

0 Answers  


Categories