How to install new units (i mean includes ex: stdio.h) for my C, and how to download more?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
put the header file on the same folder as your main source file,
ex:
then on main.c include it by writing :
the quotes are used to include a header file that’s on the same folder as your c source file
u can also write your own and include them like above.