Difference between macros and inline functions? Can a function be forced as inline?
What is storage class?
wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }
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); } }
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.
Write a program to implement queue.
How can we see the Expanded source code and compiled code for our source program in C?
What is c definition?
What is the method to save data in stack data structure type?
what is the use of a array in c
List some of the dynamic data structures in C?
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.