Quick actions

cmd+k|ctrl+k

Navigation

Languages

Custom run command with arguments

Snippet info

Language

C

Visibility

public

Author

petter

Created

2015-08-02T11:52:37Z

Updated

2015-08-02T11:52:37Z

#include <stdio.h>

int main(int argc, char *argv[]) {
    printf("args: %s %s", argv[1], argv[2]);
    return 0;
}
INFO