इस प्रोगाम का आउटपुट क्या है?
class Output
{
public static void main(String args[])
{
int a = 1;
int b = 2;
int c;
int d;
c = ++b:
d = a++;
c++;
b++;
++a;
System.out.println(a + " " + b + " " + c);
1
3 2 4
2
3 2 3
3
2 3 4
4
3 4 4
इस प्रोगाम का आउटपुट क्या है?
class Output
{
public static void main(String args[])
{
int a = 1;
int b = 2;
int c;
int d;
c = ++b:
d = a++;
c++;
b++;
++a;
System.out.println(a + " " + b + " " + c);