Advertisement
visoft

Iteratia 1 la orice citire din fisier

Nov 5th, 2020
803
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5. int main() {
  6.     FILE*f;
  7.     f = fopen("../in.txt", "r");
  8.     if (f == NULL){
  9.         return 66;
  10.     }
  11.     return 0;
  12. }
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement