#include<stdlib.h>
#include<stdio.h>
#include<string.h>
int main()
{
int i=0, length;
char string[]="Hello\0, World!!";
length = strlen(string);
char *s = string ;
for(i=0; i<length; ++i){
printf("%c", *++s); }
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: