Stdio.h
kindly help me understand how <stdio.h> works.
It's a C header file. You write
#include <stdio.h>
and then the preprocessor finds the file named stdio.h and copies the whole thing exactly into your code where you wrote
#include <stdio.h>
You then are able to call the functions listed here:
http://cplusplus.com/reference/clibrary/cstdio/
Do not use
#include <stdio.h>
Do use
#include <cstdio>
Topic archived. No new replies allowed.