What is the difference between specifying a constant variable
like with constant keyword and #define it? i.e what is the
difference between CONSTANT FLOAT A=1.25 and #define A 1.25


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

Post New Answer

More C Interview Questions

how to write a c program to print list of fruits in alpabetical order?

0 Answers  


void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }

3 Answers  


What is the difference between far and near ?

0 Answers  


What is the importance of c in your views?

0 Answers  


how to find anagram without using string functions using only loops in c programming

1 Answers   Mind Tree, TCS,






What is const volatile variable in c?

0 Answers  


what is Structural oriented language? give some example of this language.....?

1 Answers  


i want to job in your company, so how it will be possible.

3 Answers   TCS,


What is else if ladder?

0 Answers  


what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 Answers  


Differentiate fundamental data types and derived data types in C.

0 Answers   HCL,


Explain high-order and low-order bytes.

0 Answers  


Categories