Which option of the gcc is used to warn is padding is included in structure?
Which option of the gcc is used to warn is padding is included in structure?
The command “gcc -S demo.c” will
The command “gcc -S demo.c” will
What is the output of this program? #include #include void response (int); void
What is the output of this program? #include #include void response (int); void response (int sig_no) { printf(“%sn”,sys_siglist[sig_no]); } int main() { pid_t child;…
The statement z = ‘expr 5 / 2’ would store which of the following values in z?
The statement z = ‘expr 5 / 2’ would store which of the following values in z?
Fork returns . . . . . . . . to parent process on success
Fork returns . . . . . . . . to parent process on success
This program will create . . . . . . . . child processes? #include #include int
This program will create . . . . . . . . child processes? #include #include int main() { fork(); fork(); fork(); printf(“Examplen”); return…
cmd 2>&1 > abc will
cmd 2>&1 > abc will
The COFF stands for
The COFF stands for
This program will allocate the memory of . . . . . . . . bytes for pointer “ptr”
This program will allocate the memory of . . . . . . . . bytes for pointer “ptr”. #include #include int main() {…
The kill system call is used to
The kill system call is used to
The assembly code is converted into the machine code by
The assembly code is converted into the machine code by
Which GDB command interrupts the program whenever the value of a variable is mod
Which GDB command interrupts the program whenever the value of a variable is modified and prints the value old and new values of the…
