+ 1
When r default and goto keywords used in C++ ????
5 odpowiedzi
+ 2
default is used in switch - case statement.
+ 2
To perform an operation if value passed by switch doesn't match to any of case values.
+ 1
A goto statement provides an unconditional jump from the goto to a labeled statement in the same function. NOTE: Use of goto statement is highly discouraged because it makes difficult to trace the control flow of a program, making the program hard to understand and hard to modify.
0
Why you have declined my challenge @vaishnavi
- 1
what's the wrong with my point ??