Analise o código a seguir, escrito na linguagem C++.
# include <iostream.h>
int main ( )
{
int x = 3, &y = x;
cout << ''x='' << x << 11 y='' << y << " " ;
y=7;
cout << ''x='' << x << 11 y='' << y << " " ;
return 0;
}
O que será exibido após a execução do código acima?
Provas
Questão presente nas seguintes provas