#import <stdio.h>
or
#include <stdio.h>
What is the correct way to use it?
I was seeing videos on YouTube for some time.
#import <stdio.h>
or
#include <stdio.h>
What is the correct way to use it?
I was seeing videos on YouTube for some time.
Do not use #import
, it is out of standard, at most use #pragma once
if you want to ensure inclusion only occurs once.
See: