Sourabh Somani
How many times C# Corner will be printed in the following code?
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int x;
  5. for(x=-1; x<=10; x++)
  6. {
  7. if(x < 5)
  8. continue;
  9. else
  10. break;
  11. printf("C# Corner");
  12. }
  13. return 0;
  14. }
By Sourabh Somani in C, C++, MFC on Jun 05 2019
  • Sourabh Somani
    Jun, 2019 5

    output

    C# Corner will not print or zero times it will print

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS