CS Electrical And Electronics
@cselectricalandelectronics

Which is the output of the code below? #include int function { Static int .c= 0; C++ Return c; } Int main() { print(“%d”, function()); print(“%d”, function()); return 0; }

All QuestionsCategory: Embedded SystemWhich is the output of the code below? #include int function { Static int .c= 0; C++ Return c; } Int main() { print(“%d”, function()); print(“%d”, function()); return 0; }
vaishnavi.talawar asked 3 years ago

a) 12
b) 11
c) Null
d) 13