Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
    int x,y,m;
for(;;){
    m=scanf("%d %d",&x,&y);
    if (m!=2 || m==EOF){
        break;
    }
    else{
        printf("/%d/%d/\n",x,y);
    }
}
if (feof ( stdin )){
  printf("End of input\n");
}else if(m!=2){
  printf("There was an error\n");
}

Under linux ctrl+D indicates end of input , and for windows ctrl+z is supposed to do the trick, but it doesn't work. Any ideas?

share|improve this question
possible duplicate of What is EOF in the C programming language? – larsmans Oct 26 '10 at 12:04

2 Answers

up vote 1 down vote accepted

Try pressing Enter after Ctrl+z

If still no luck, please try the C++ version:

#include <iostream>

int x, y;
while ( std::cin >> x >> y )
   std::cout << '/' << x << '/' << y << "/\n";
if ( std::cin.eof() )
   std::cout << "End of input\n";
else
   std::cout << "There was an error\n";

and see if it does better?

share|improve this answer
Nope, doesn't work. it just freezes after ctrl+z, no more input possible, not even enter. – Randalfien Oct 26 '10 at 12:21
BTW do you think that scanf doesnt return EOF ? cause all the examples from web work with getchar ..but since I need integers , I don't want to use that.. – Randalfien Oct 26 '10 at 12:37
@Randalfien: scanf will return EOF when end-of-file is occurred. – usta Oct 26 '10 at 12:57
@Randalfien: Ctrl+z followed by Enter works for me with your code, VC 10 Express and XP SP3. What compiler do you use? – usta Oct 26 '10 at 12:59
I use NetBeans, thats gcc compiler , I run Win7 .. Can it be, that I have something wrong with my compiler comfiguration? – Randalfien Oct 26 '10 at 13:56
show 4 more comments
#include<stdio.h>
#include<conio.h>
void main (void)
{
int x,y,m;
for(x=0;x>=0;x++){
    m=scanf("%d %d",&x,&y);
    if (m!=2 || m==EOF){
    break;
    }
    else printf("/%d/%d/\n",x,y);
}
if (feof ( stdin )){
  printf("End of input\n");
}
else if(m!=2){
  printf("There was an error\n");
}
getch();
}
share|improve this answer
Please don't just dump code for your answer. Provide an explanation too – Lee Taylor Dec 24 '12 at 12:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.