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 |
int *a[5] refers to
difference between c and c++
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
Write a program to write a given string in maximum possibilities? i.e str[5]="reddy"; i.e we can write this string in 120 ways for that write a program
Are there constructors in c?
C,c++, Java is all are structural oriented or procedure oriented language..?
why we use pointer in c
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
What are 'near' and 'far' pointers?
what is const volatile?
what is the code for getting the output as * ** ***
What does a pointer variable always consist of?