What happens if the following program is executed in C and C++?
#include <stdio.h>
int main(void)
{
int new = 5;
printf("%d", new);
}
#include <stdio.h>
int main(void)
{
int new = 5;
printf("%d", new);
}A. Error in both C and C++
B. A successful run in both C and C++
C. Error in C and successful execution in C++
D. Error in C++ and successful execution in C
Answer: Option D

Join The Discussion