How many times C# Corner will be printed in the following code?
Sourabh Somani
#include<stdio.h>int main(){ int x; for(x=-1; x<=10; x++) { if(x < 5) continue; else break; printf("C# Corner"); } return 0;}
#include<stdio.h>
int main()
{
int x;
for(x=-1; x<=10; x++)
if(x < 5)
continue;
else
break;
printf("C# Corner");
}
return 0;
output
C# Corner will not print or zero times it will print
using System;public class X{ public static void Main() { int i=0; i=i++ + i++; i++; ++i; Console.WriteLine(i); }}