MIPI_BaseC_WebinarFRTK/09_Lecture09/04__p17.c
2024-11-13 09:22:28 +03:00

13 lines
199 B
C

#include <stdio.h>
int main(int argc, char **argv)
{
char st1[10] = "hello";
char st2[10] = "hello";
if(st1 == st2)
printf("Yes");
else
printf("No");
return 0;
}