Q. What is the output of this program?
Code:
#include <stdio.h>
int main()
{
printf("%d",30);
return 0;
}
β
Correct Answer: (D)
Compilation error
#include <stdio.h>
int main()
{
printf("%d",30);
return 0;
}
You must be Logged in to update hint/solution