What is #define?
No Answer is Posted For this Question
Be the First to Post Answer
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Write a program to find whether the given number is prime or not?
Differentiate between new and malloc(), delete and free() ?
a simple c program using 'for' loop to display the output 5 4 3 2 1
Can we replace the struct function in tree syntax with a union?
Differentiate Source Codes from Object Codes
Explain how do you override a defined macro?
What is define directive?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
What is volatile keyword in c?