Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 329 Bytes

File metadata and controls

17 lines (13 loc) · 329 Bytes

PRG Example code

This repository contains examples that will be used in the lecturing. Feel free to clone the repository so you can follow he lecture with this examples.

#include <stdio.h>

/* function main begins program execution*/
int main(void)
{
	printf("Hello Students!\n");
	return 0;
}

/*end function main*/