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 / sasmita lenka
it l run
| Is This Answer Correct ? | 12 Yes | 3 No |
Post New Answer View All Answers
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Why do we use null pointer?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
define string ?
What is the importance of c in your views?
Why do we use int main instead of void main in c?
Explain enumerated types in c language?
what do you mean by inline function in C?
What is the purpose of & in scanf?
Simplify the program segment if X = B then C ← true else C ← false
What is scanf () in c?
Tell me the use of bit field in c language?
How is a pointer variable declared?
What is %s and %d in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none