इस प्रोग्राम का आउटपुट क्या है?
class increment
{
public static void main(String args[])
{
int g = 3;
System.out.print(++g * 8);
}
}
1
25
2
24
3
32
4
33
इस प्रोग्राम का आउटपुट क्या है?
class increment
{
public static void main(String args[])
{
int g = 3;
System.out.print(++g * 8);
}
}