What is the difference between declaring a variable by
constant keyword and #define ing that variable?
Answer / ganesh
constant- it cannot be changed
# define - it can be changed if we can redefine
Is This Answer Correct ? | 2 Yes | 0 No |
What is the c language function prototype?
Is it better to use malloc() or calloc()?
Why do we use int main?
Write a C program to multiply tho numbers without using arithmetic operator (+, -, *, /).
Write a small C program to determine whether a machine's type is little-endian or big-endian.
What are the advantages of Macro over function?
Write a function that will take in a phone number and output all possible alphabetical combinations
Which is the memory area not included in C program? give the reason
difference between object file and executable file
Why is it usually a bad idea to use gets()? Suggest a workaround.
Where register variables are stored in c?
Explain the difference between null pointer and void pointer.