The following code is one of the simplest C programs that will help us understand the basic syntax structure of a C program.

#include <stdio.h>

int main() {
  int a = 10;
  printf("%d", a);
  
  return 0;  
}

Output :
10