FreeRTOS - Task Creation and Management
Given this task function:
void Task(void *pvParameters) {
int *p = (int *)pvParameters;
printf("Number: %d\n", *p);
vTaskDelete(NULL);
}
If called with a pointer to an int variable holding 10, what is printed?
