Select Git revision
tailwind.config.js
task1_pointer.c 211 B
#include <stdio.h>
int main() {
int n = 10;
int *ptr_to_n = &n;
// Increment the value of n using the pointer
(*ptr_to_n)++;
printf("Value of n after increment: %d\n", n);
return 0;
}