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?
4 8567void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 31096int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
7 12455A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
2 4854how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
4 12363int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
2 4980Post New Wipro C Interview Questions
What are dynamic loading?
Explain about the bloommapfile?
Which parameters are optional in init.ora parameter file?
Explain about document schema and property schema?
What is rman. Can it be used for database recovery and backup? If yes, how?
Explain the uses of static class data?
what is software project planning?
Is mysql query case sensitive?
What is a size category? : abap data dictionary
Do you know what is gathers?
While creating a web part, which is the ideal location to initialize the web controls?
How you can differentiate between conversion operator "todictionary" and "ienumerable" of linq?
Which one of the following suits the description of a string better: derived or primitive?
What platforms node.js supports?
Tell me will a comparison of an integer 12 and a string "13" work in php?