volatile and sequencing
What is the output of this program?
#include <iostream>
volatile int a;
int main() {
std::cout << (a + a);
}
Sign in to answer questions and track your progress
Sign InWhat is the output of this program?
#include <iostream>
volatile int a;
int main() {
std::cout << (a + a);
}
Sign in to answer questions and track your progress
Sign In