Seeking help for the program. Please help
Hi All,
I know the program below is almost wrong and I am seeking for a hep to fix that UP
please help:
#include <stdio.h>
#include <string.h>
int i;
float r;
char c;
char s[48];
int main() {
i=4;
r=3;
c='z';
strcpy(s,"Hi There");
printf("i=%d,r=%d,c=%d")
}