Advertisement
Alx09

Lab1 SDA citire fiser

Feb 19th, 2024
1,046
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.     FILE* f;
  7.     int numar;
  8.    
  9.     if (fopen_s(&f, "in.txt", "rt") != 0) {
  10.         printf("Fiser negasit");
  11.         return 0;
  12.     }
  13.     while (fscanf_s(f, "%d", &numar) != EOF) {
  14.         printf("%d ", numar);
  15.     }
  16.  
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement