CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C Quiz #3

Pointer Output

mediumVariables

What is the output of this code?

📄 Code

1#include <stdio.h>
2 
3int main() {
4 int x = 10;
5 int *p = &x;
6 *p = 20;
7 printf("%d\n", x);
8 return 0;
9}