Answers for "params in main function in C"

C
1

params in main function in C

#include <stdio.h>

int main(int argc, char * argv[]){
	//put your code here
}
Posted by: Guest on May-23-2021
0

giving arguments to main function in c

/* main.c */
/* 0 copyright/licensing */
/* 1 includes */
/* 2 defines */
/* 3 external declarations */
/* 4 typedefs */
/* 5 global variable declarations */
/* 6 function prototypes */

int main(int argc, char *argv[]) {
/* 7 command-line parsing */
}

/* 8 function declarations */
Posted by: Guest on September-28-2020

Code answers related to "C"

Browse Popular Code Answers by Language