In Unix, which of the following commands is used to concatenate all the files that begin with the string emp and are followed by non-numeric characters?
Consider the command ./a.out John loves you. Assume that a.out is an executable. If we execute ./a.out John loves you and try to access the command line arguments as shown in the example C code below, which of the following characters would be printed if we were to print argv[1][2] ?
Example C code to understand the question.
#include
int main(int argc, char * argv []) {
// What would be the value of argv[1][2] ?
printf("%c
", argv[1][2]);
}