C - Basics and Execution Environment
Identify the error in this C code snippet:
int main() {
int a = 5;
int *p;
*p = a;
return 0;
}int main() {
int a = 5;
int *p;
*p = a;
return 0;
}15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions