difference between native and cross compilers


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

write a c program for swapping two strings using pointer

0 Answers  


#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?

6 Answers   NDS,


why Language C is plateform dependent

3 Answers   Siemens, Wipro,


main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }

5 Answers   Vector, Vector Solutions,


write a progrmm in c language take user interface generate table using for loop?

0 Answers  






int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


write a program to find out prime number using sieve case?

0 Answers   HCL,


what does ‘Bus Error’ mean?

1 Answers   ABC,


What is the modulus operator?

0 Answers  


Do you know the difference between malloc() and calloc() function?

0 Answers  


write a c program to print "Welcome" without using semicolon in the whole program ??

15 Answers   Infosys, TCS,


What are the various types of control structures in programming?

0 Answers  


Categories