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

What is the most efficient way to count the number of bits which are set in a value?

4 Answers  


write a recursive program in'c'to find whether a given five digit number is a palindrome or not

2 Answers  


How can you find the day of the week given the date?

0 Answers  


main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }

1 Answers  


what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }

3 Answers  






a value that does not change during program execution a) variabe b) argument c) parameter d) none

0 Answers  


Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.

2 Answers  


main() { int i = -3,j=2,k=0,m; m= ++i || ++j && ++k; printf("%d%d%d",i,j,k,m); }

7 Answers   HCL,


Tell me can the size of an array be declared at runtime?

0 Answers  


what is mean by Garbage collection ? Please answer me. Advance thanks.

4 Answers   Excel,


extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }

2 Answers  


Why double pointer is used in c?

0 Answers  


Categories