Difference between macros and inline functions? Can a function be forced as inline?


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

Post New Answer

More C Interview Questions

What is storage class?

0 Answers  


wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }

2 Answers  


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

0 Answers   Google,


what is available in C language but not in C++?

10 Answers   CTS, TCS,


write a program that will read the temperature in Celsius and convert that into Fahrenheit.

1 Answers  


Write a program to implement queue.

0 Answers   Aricent,


How can we see the Expanded source code and compiled code for our source program in C?

1 Answers  


What is c definition?

0 Answers  


What is the method to save data in stack data structure type?

0 Answers  


what is the use of a array in c

6 Answers  


List some of the dynamic data structures in C?

0 Answers  


You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.

0 Answers  


Categories