Quick actions

cmd+k|ctrl+k

Navigation

Languages

Comand line Arguments

Snippet info

Language

C

Visibility

public

Author

krishnakanth

Created

2022-11-18T04:09:22.806284Z

Updated

2022-11-20T15:51:12.939147Z

#include <stdio.h>
#include <string.h>

int main(int argc,char **a) {
 
    printf("%d %s",argc,a[0]);
    return 0;
}
INFO