tk5-c90-projects/src/TXTWKR01.c

16 lines
324 B
C
Raw Normal View History

#include <stdio.h>
int main()
{
2026-02-08 15:53:22 +00:00
printf("Starting program - attempting fopen(dd:TESTDD, \"r\")\n");
2026-02-08 15:53:22 +00:00
FILE *fp = fopen("dd:TESTDD", "r");
2026-02-08 15:43:02 +00:00
if (fp == NULL) {
2026-02-08 15:53:22 +00:00
printf("fopen returned NULL\n");
perror("fopen error");
return 1;
}
2026-02-08 15:53:22 +00:00
printf("fopen succeeded!\n");
/* rest unchanged */
2026-02-08 15:43:02 +00:00
}