✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Let a1.out and a2.out be the executable files obtained by running
gcc -Wall -Werror -Wpedantic -o a1.out helloWorld1.cand
gcc -Wall -Werror -Wpedantic -o a2.out helloWorld2.cwhere helloWorld1.c is #include <stdio.h>
int main() { int i = 2; if (i==1) { printf("hello world!\n"); i++; } if (i>1) printf("hello world!\n");}
and helloWorld2.c is
#include <stdio.h>
int main() { int i = 2; if (i==1) { printf("hello world!\n"); i++;if (i>1) printf("hello world!\n")}}
Select the true statements.