#include <stdio.h>
#include <conio.h>
main()
{ int i;
char full;
char array[10]="ABCD";
for (i=0;i<=6;i++)
full = array[i];
printf("%c",full);
}
I wanna convert an array to a full character .So that i can print the character like this line printf("%c",full);
This program unable to print the character?? Whats wrong in this prog..??