1
#import <stdio.h>
or
#include <stdio.h>
What is the correct way to use?
I’ve been watching videos on Youtube for a while.
1
#import <stdio.h>
or
#include <stdio.h>
What is the correct way to use?
I’ve been watching videos on Youtube for a while.
4
Do not use #import
, it is out of standard, at most use #pragma once
if you want to ensure that inclusion occurs only once.
Behold:
Browser other questions tagged c c++
You are not signed in. Login or sign up in order to post.