C_Language_Interview_Questions_Answers (1)
C_Language_Interview_Questions_Answers (1)
4. Q: What is a variable?
A: A variable is a named location in memory used to store data. Its value can be
changed during program execution.
83. Q: What is the difference between #include <file> and #include "file"?
A: `<>` is for system headers; `""` is for user-defined headers.