Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

c int

// create int, assign a value to it and print it to console.
#include <stdio.h>
int main()
{
	int year = 1981;
  	int age;
   	age = 41;
  
  printf("My age is %d", age);
}
 
PREVIOUS NEXT
Tagged: #int
ADD COMMENT
Topic
Name
9+9 =