Please assist Iam getting this "13 C:\Dev-Cpp\main1.c [Warning] return makes integer from pointer without a cast " from the program below when i try to compile it.
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <time.h>
#include <math.h>
int main()
{
/*getLarger();*/
/*getRandom();*/
printDetails();
getch();
return /*getLarger,getRandom,*/printDetails;
}
int printDetails()
{
int Name[];
Name[] = Tlhompho
printf("My Details are %s",Name);
}