Hello friends. I am Harsh Software Developer By Profession & YouTube by passion.

Welcome to my Channel MH Coder. In this channel &I will provide Programming Language Tutorial.

Projects and IT Jobs related coding and software.


MHCoder

My channel like & subscribe

youtube.com/@MH_Coder

1 year ago | [YT] | 2

MHCoder

What will be the output of the following java program ?

int main(){
int i;
for(i=0;i<10;i++){
i++;
System.out.print(i);
}
}

2 years ago | [YT] | 1

MHCoder

What will be the output of the following java program ?

package coding;

public class logicPseudo {
public static void main(String[] args) {
int x;
x=5;
{
int y=6;
System.out.print(x+" "+y);
}
System.out.print(x+" "+y);
}

}

2 years ago | [YT] | 2

MHCoder

What is Outputs of following program?

int a=10,b=20;
a=a+b;
b=a-b;
a=a-b;
System.out.println(a+","+b);

2 years ago | [YT] | 1

MHCoder

What is output of below program?

int main()
{
int i,j,count;
count=0;
for(i=0; i<5; i++);
{
for(j=0;j<5;j++);
{
count++;
}
}
printf("%d",count);
return 0;
}

2 years ago | [YT] | 4