You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 25, 2021. It is now read-only.
/* This is a comment. Comments are ignored by the compiler. */// This is also a comment./* * Comments made with "/*" can span multiple lines * like this. */// Includes (this will be covered later)#include<stdio.h>// Main function// All C programs must contain a 'int main' blockintmain() { // Logical blocks in C are wrapped with curly bracesprintf("Hello World!\n"); // All C statements end with semicolons// The compiler will be very angry if you forget one
}