anything wrong with this? (C Programming)

Soldato
Joined
9 Dec 2006
Posts
9,289
Location
@ManCave
Code:
#include <stdio.h>

int main(void)
{
    Printf("concrete contains gravel and cement");

    return 0;
}

Netbeans IDE is complaining that it cant find Stdio.h & printf :confused:
 
well stdio.h is the defacto "standard i/o" header so there's something up with the setup of netbeans such as a missing header path or mistyped location.
 
Back
Top Bottom