India Languages, asked by dainvincible1, 1 year ago

Point out the error in the following program.

#include
int main()
{
int (*p)() = fun;
(*p)();
return 0;
}
int fun()
{
printf("IndiaBix.com\n");
return 0;
}

Answers

Answered by sidharth12
0
header file is missing

should be
#include<iostream.h>
#include<stdio.h>
Similar questions