You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
H
The code I used below generated 2 errors C2440: '=' : cannot convert from 'void *' to 'char *' which I can't debug
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_LINE_LEN 80
const char symbol = '*';
const char space = ' ';
char line[MAX_LINE_LEN];
void...