R
Q. Determine Output
#include<stdio.h> #define a 10 void main() { #define a 50 printf("%d", a); }
The preprocessor directives can be redefined anywhere in the program. So the most recently assigned value will be taken.
You must be Logged in to update hint/solution
Q. Which of the following characters is used to make a line break on the screen?
Q. Which among the following is a Local Variable?
Q. Which of the following is not an iterative statement?
Q. What will be the output of the following C code?
Q. Comment on the given statment:
Q. Which of the following is the correct output for the program given below?
Q. #define can be used to define alias for values as well
Q. What is the output of C Program with functions?
Discusssion
Login to discuss.