(Choose 1 answer)
Given the following C statements:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
return (blank A);
}
If a C-program completes executing successfully, what value should the function main returned to fill in blank A of above program?
A. 0
B. 1
C. void
D. nothing
Q: 40