Tagged Questions
The putchar tag has no wiki summary.
4
votes
5answers
2k views
How will you print a character without library functions in C?
If for example I should not use standard library functions like printf, putchar then how can I print a character to the screen easily. Is there any easy way of doing it. I dont know much about system ...
3
votes
5answers
1k views
getchar() and putchar()
in the example:
#include <stdio.h>
main()
{
long nc;
nc = 0;
while (getchar() != EOF)
++nc;
printf("%ld\n", nc);
}
I don't quite understand it. putchar() would put ...
2
votes
2answers
30 views
Converting Decimal Literals to ASCII Equivalent for putchar in C
I am trying to understand why the following statement works:
putchar( 1 + '0' );
It seems that the + '0' expression converts the literal to the respective ASCII version (49 in this particular case) ...
1
vote
4answers
90 views
How to compose characters into a single string in memory?
I am working on a school assignment and I need a little bit of help.
My question is, how can I compose characters that are read in from a file into a single string of memory. Here is what i have so ...
1
vote
3answers
438 views
Very simple C question using getchar() and putchar()
Hello I am teaching myself C and going through the K & R book and I am having some trouble (I am running OS X). This is from section 1.5.1 "File Copying" which is supposed to take a character as ...
0
votes
2answers
193 views
confused about while(getchar() != '\n');.. would you help.?
*i knew that getchar() is just a function gets the first character of the line the user entered then the next and so on
*and if we typed getchar() in a line -at the finishing of the code-it's for let ...
0
votes
1answer
161 views
C getchar() and putchar()
Going through K&R, I'm trying to get my head around C.
I want to write a program that prints on the screen the user's previous line, unless the character was "a".
int main(){
int c;
...
0
votes
4answers
239 views
Printing a string in C using a function
I'm brand new to C and am trying to learn how to take a string and print it using a function. I see examples everywhere using while(ch = getchar(), ch >= 0), but as soon as I put it into a function ...
0
votes
2answers
52 views
Opposite of putchar()?
Is there an opposite to putchar() where you can pass the ascii character and it will output the numerical value? Thanks.