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 |
What is the restrict keyword in C?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
1. Write a program to reverse every second word in a given sentence.
Why is sizeof () an operator and not a function?
what is the difference between const volatile int i & volatile const int j;
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
number 2 plssssss help !!....using array.. turbo c.. create a program that will accept a number and determine if it is a happy number or an unhappy number.. example: enter a number : 7 7*7=49 then 4 and 9 4*4 and 9*9== 16 + 18 gives you 97 then 9 and 7 9*9 and 7*7 == 81 + 49 gives you 130 then 1 and 3 1*1 and 3*3 == 1 + 9 gives you 10 1*1 gives you 1 sample output: 7= 49= 16+81= 97= 81+49=130 =1+9=10 =1 "7 is a happy number" . if the last number is 2 then the number being inputed is not a happy number.
Which one would you prefer - a macro or a function?
What is the difference between the local variable and global variable in c?
why integer range between -327680to+32767
what is mean by Garbage collection ? Please answer me. Advance thanks.
What is void c?