What is the best way to store flag values in a program?


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

Post New Answer

More C Interview Questions

Between macros and functions,which is better to use and why?

0 Answers  


What is volatile variable how do you declare it?

0 Answers  


What is a volatile keyword in c?

0 Answers  


sir, i cannot find the way how to write aprogram by using array on queue

1 Answers   IISIT,


What is the use of f in c?

0 Answers  






There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.

5 Answers   Yahoo,


Why do u use # before include in a C Progam?

9 Answers   IBM,


What is difference between far and near pointers?

0 Answers  


What are the types of functions in c?

0 Answers  


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

0 Answers   Microsoft,


What is the purpose of macro in C language?

0 Answers   Fidelity,


Is c is a procedural language?

0 Answers  


Categories