This is C not C++ ! This project allows you to use blocks to make a C program! When you are finished writing the source, click "See inside" and right click the top of the list and click "export", and it should download the source! *****READ BEFORE USING***** #before eporting# - make sure all loops are closed (use "end loop" to do so) - declare all used varibles (use "make number/string var" to declare varibles) - #logic operations# == is "equal to" ! is "not" >= is "greater than or equal to" <= is "less that or equal to" > is "greater than" < is "less than" && is "and" || is "or" ~example logic operations~ a < b a != b a==b>=c a || b && (c>d<=e) (a+b) - (a+b) // thats alwase false #varible initalizing prefixes# int make number var (16-bit = 2^16) long make number var (32-bit = 2^32) long long make number var (64-bit = 2^64) signed make number var (makes nagative numbers possible (2^bits)/2 ) char make character/string var char varName[x] makes string var "x" characters long ~example~ char somename[20]; long signed somename; long signed somename=3849; long long signed somename=384555555555559;
inspired by this project: https://scratch.mit.edu/projects/20372436/ and this user @MCAnimator3D Use this site to compile the code: http://www.tutorialspoint.com/compile_c_online.php exaples: 1: for loop 2: accesing arrays with for loops