Home » Categories » C » Find the output?
Find the output?
0
Find the output?

#define one 0
#ifdef one
printf("one is defined ");
#ifndef one
printf("one is not defined ");


a.one is defined
b.one is not defined
c.Error
d.None
 
Asked By : yamuna Categories : CTechnicalProgramming
  Answer:   a. one is defined
Post Your Answer
Previous Question
Next Question
Tweet
Related Questions