move exercises and lectures into subfolders

This commit is contained in:
2023-10-15 15:34:53 +01:00
parent 775b4bd643
commit 74092a17aa
177 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
int a; // Declare some variables
float f;
// Use printf to prompt the use to enter an integer
printf ("Please enter an integer\n");
// use scanf with %d to read into 'a'
scanf ("%d",&a); // note the important &
// And display on the screen
printf ("The value you entered for a is %d\n", a);
// Use printf to prompt the use to enter an float
printf ("Please enter a float\n");
// use scanf with %f to read into 'f'
scanf ("%f",&f); // note the important &
// And display on the screen
printf ("The value you entered for f is %f\n", f);
return 0; // Exit from main
}