A
Q. What happens if the following program is executed in C and C++?
Code:
#include <stdio.h>
int main(void)
{
int new = 5;
printf("%d", new);
}
int main(void)
{
int new = 5;
printf("%d", new);
}
- Correct Answer - Option(C)
- Views: 4
- Filed under category C++
- Hashtags:
Discusssion
Login to discuss.