i am run c programs that is
#include <stdio.h>
#include <stdlib.h>
int main ()
/*
this is my first program
this is awesome*/
/* these statements “/* and *” used tp enter the comments before header file */
{
char name[18]=”malik umer farooq”;
printf(“my name is %s n”,name);
name[2] = ‘z’;
printf(“my name is %s n”,name);
char food[10] = “tona”;
printf(“best food is %s n”,food);
strcpy(food “bonna”);
printf(“best food is %s n”,food);
return 0;
}
showing error please help me