निम्नलिखित जावा कोड का आउटपुट क्या होगा?
class increment {
public static void main(String args[])
{
int g = 3;
System. out. print(++g * 8);
}
}
1
33
2
25
3
24
4
32
निम्नलिखित जावा कोड का आउटपुट क्या होगा?
class increment {
public static void main(String args[])
{
int g = 3;
System. out. print(++g * 8);
}
}