C:\Users\jason\Documents\Pelles C Projects\loop\loop.c(1): fatal error #1035: Can't find include file "randomcard.h". does any one know what this means and how do i fix it he is the code
#include "randomcard.h"
#include <stdio.h>
#include <ctype.h>
#include <string.h>
It means, what the message says, the compiler can't find the include file "randomcard.h". The compiler searches for this file in the directory where your source code is.
Have you create a header file "randomcard.h"?