TEMPLATE

/*######################################################################################
# Dev: cnd.dev
# Program Name: FileName-v1.0.0-linux-x86-64
# Version: 1.0.0
#  - Major.Minor.Update
# Date: 181445MAR25
# Filename: filename.c
# Dependency: N/A
# Compile Cmd: gcc -m64 -O1 filename.c -o filename-v1.0.0-linux-x86-64
# Synopsis:
#  - Overview: describes what the program does, how it works, and its key components
#  - Technical: ...
######################################################################################*/

#include <iostream>
using namespace std;

int main(int argc, char *argv[])
{
  int a = 10, b = 20;
  double c = 10.3, d = 60.234;

  cout << "..." << endl;                                         //printf("...\n");
  cin >> a >> b;                                                 //scanf("%d", a);
                                                                 //scanf("%d", b);
  
  //printf("Value of a: %d\n, a);
  //printf("Value of b: %d\n, b);
  cout << "Value of a: " << a << endl << "Value of b: " << b;    
 
}

#
int main(void)
{
  ...
}

Last updated