# include <stdio.h> int main(void) { char * a = "ab"; printf("%s\n",a); if ( a == "ab" ) { printf("Yes\n"); } return 0; }