Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. include <stdio.h>
  2. int main (void) {
  3. FILE *in, *out;
  4. int t;
  5. in = fopen("in.txt", "r");
  6. out = fopen("out.txt", "w");
  7. for(int i=0; i<469; i++){
  8. fscanf(in, "%d", &t);
  9. printf(out,"C_5 %t \n",t)
  10. }
  11. return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement