Skip to content
Snippets Groups Projects
Select Git revision
  • fa47c137d82e254b8fe724e44049acf3dfffabfb
  • main default protected
  • hamid
  • brodybranch
  • James
  • Michael
  • Kacper
  • Brody
8 results

tailwind.config.js

Blame
  • 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;
    }