{}
See how a CS professor is using our compiler for class assignment.
Try Programiz PRO for Educators!
Learn DSA with step-by-step code visualization.
Try Programiz PRO for Educators!
run-icon
main.c
// Online C compiler to run C program online #include <stdio.h> int main() { int arr[10 ]; int x = &(arr[30])-arr; printf("Hello World, %i\n", x); int y= &(arr[-30])-arr; printf("Hello negative, %i\n", y); return 0; }
Output