1.1.2.6 LAB: What’s your name?
#include <stdio.h>
int main(void)
{
puts("Velimir Radlovacki");
puts("Velimir Radlovacki");
puts("Velimir Radlovacki");
return 0;
}
1.1.2.7 LAB: Just numbers: Part 1
#include <stdio.h>
int main()
{
printf("The value of five is: %d\n", 5);
return 0;
}
1.1.3.8 LAB: Just numbers: Part 2
#include <stdio.h>
int main()
{
printf("The value of six is: %d\n", 16-10);
return 0;
}