summaryrefslogtreecommitdiff
path: root/void_tutorial.c
blob: bef3396f2e4d02815acc93f4ca53e11b20bc56f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>


int main(void)
{

    	char a = 3;

    	char* b = a * 7;

    	printf("%d\n",b);

    	return 0;
}