I am currently just learning C and for a project I need to read in integer inputs from the user. Currently I am using code that looks like this:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int a, b;
printf("Please enter your first number");
while((a = getchar()) != '\n') {
}
printf("test");
return 0;
}
Im not sure how to get the number with getchar and then store it in a variable i can use. Also I'm using = '\n' in the while statement because I don't really understand how EOF works (as in the K&R book) because whenever i use EOF i go into this loop i cant get out of.
Thanks for any advice anyone can offer.
getcharreads achar, as it's name indicates. Why would you expect it to read anint? – Ken White Sep 24 '11 at 19:33int, eh? ;-) I think the key point is not the type it gets but the format of the data it accepts (character representing itself versus characters representing an integer in decimal notation). – R.. Sep 25 '11 at 2:42