User Activity

I'm trying to use this C code#include <stdio.h>     char arr[50]; int var_int; float var_float;   int main (void) { while (1) { var_int++; sprintf (arr,"RES 1 %d",var_int); var_float = var_float + 0.1; sprintf (arr,"RES2 %d %f",var_int,var_float...