A program to explain POINTERS to STRINGS
C Programming Language 110
- Write a program to explain POINTERS to STRINGS
Program
#include <stdio.h>
void main()
{
char *names[3] = {"John\0", "Bob\0", "Carol\0"};
int i;
printf("Names are \n");
for (i = 0; i < 3; i++)
{
printf("\n%s", names[i]);
}
printf("\n");
}
Result
Names are
John
Bob
Carol
Last Updated on
Comments