What's new

Help C functions pa help po

Phantom Rhythm

Honorary Poster
Joined
Sep 10, 2018
Posts
680
Reaction
69
Points
215
#include <stdio.h>
#include <stdbool.h>

bool schrodingersFunction (int);
int main() {

bool realityCheck = true;
int doesItExist;
doesItExist = schrodingersFunction(realityCheck);
if(doesItExist == realityCheck)
printf("It does!");
else
printf("No it doesnt!");

return 0;
}

error: ld returned 1 exit status
 

Similar threads

Back
Top