Computer Science, asked by devikaggopan99, 5 hours ago

#include <stdio.h>
int const p()
{
printf("HackerEarth.com");
return 0;
}
void main()
{
p();​

Answers

Answered by pratisthaniralaxyz
0

Answer:

question is either incomplete or wrong.

Explanation:

your question is either incomplete or wrong. as main() body is not closed. if we close the main() body then

#include <stdio.h>

int const p()

{

printf("HackerEarth.com");

return 0;

}

void main()

{

p();

}

the output is:

HackerEarth.com

Similar questions