What is the difference between far and near ?


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

Post New Answer

More C Interview Questions

Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort

7 Answers  


What is the difference between ++a and a++?

0 Answers  


What does static variable mean in c?

0 Answers  


count the numbers between 100 and 300, that star with 2 and ends with 2

5 Answers   Mind Tree,


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

5 Answers   Vector, Vector Solutions,






What is the process of writing the null pointer?

0 Answers  


What extern c means?

0 Answers  


Why c is called a mid level programming language?

0 Answers  


what does " calloc" do?

7 Answers   Cadence, Logos,


What are lookup tables in c?

0 Answers  


What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }

5 Answers   ADITI, Wipro,


What are dangling pointers? How are dangling pointers different from memory leaks?

1 Answers  


Categories