C Lang Interview Questions
C Lang Interview Questions
The Macro call makes the program run faster but also increases the program size.
Passing arguments and getting back the returned value takes time and makes the program run at a slower
rate.
48.Suppose a global variable and local variable have the same name. Is it is possible to access a global
variable from a block where local variables are defined?
Ans: No. It is not possible in C. It is always the most local variable that gets preference.
With this, we come to an end of this “C Programming Interview Questions” article. I hope you have understood the
importance of C Programming.
48. #include<stdio.h>
49. void main()
50. {
51. if(printf("hello world")){}
52. }
53.