given the code segment below void main() { cout<<"my no. is"; } question is how can we get the output hai aravind my no. is 99999999999 without editig the main().
2 C++ General 4842
Should you protect the global data in threads? Why or why
not?
Answer
Is This Answer Correct ? | 1 Yes | 1 No |
Question { 8119 }
What will happen when the following code is run:
int x;
while(x<100)
{
cout<
}
1) The computer will output "0123...99"
2) The computer will output "0123...100"
3) The output is undefined
Answer
Is This Answer Correct ? | 0 Yes | 1 No |