What are the standard predefined macros?


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

Post New Answer

More C Interview Questions

Is it possible to execute code even after the program exits the main() function?

0 Answers  


how to find string length wihtout using c function?

6 Answers  


main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }

1 Answers  


Where are some collections of useful code fragments and examples?

0 Answers   Celstream,


What is a string?

0 Answers  






What are the disadvantages of c language?

0 Answers  


write a program to copy the string using switch case?

0 Answers   Mind Tree,


main() {int a=200*200/100; printf("%d",a); }

14 Answers   TCS,


How will you print TATA alone from TATA POWER using string copy and concate commands in C?

0 Answers   Amdocs, Apps Associates,


what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year

7 Answers   TCS,


Is multithreading possible in c?

0 Answers  


What are bit fields? What is their use?

2 Answers   Adobe,


Categories