this is an example programme that counts lines, words and characters.
i have noticed one thing that this programme counts space, a newline
and a tab as a character.
i know:
1. a newline is represented as '\n'
2. a tab as '\t'
3. a space as ' '
what i want to know is whether a newline, a space and a tab are
represented internally as characters ?
i know everything is represented as machine's character set, most
probably ASCII where 'A' is 65 but i am actually confused on this
'\t', '\n' , ' ', and character issue.
any help
here is the code that counts characters,words,tabs and newlines:
// word counting
#include <stdio.h>
#define IN 0
#define OUT 1
int main(void) {
int c, nl, nw, nc, state;
state = OUT;
nl = nc = nw = 0;
while((c = getchar()) != EOF)
{
++nc;
if (c == '\n')
++nl;
if( c == ' ' || c == '\n' || c == '\t')
state = OUT;
else if (state == OUT)
{
state = IN;
++ nw;
}
}
printf("%d NEWLINES \t %d WORDS \t %d CHARs \n", nl, nw, nc);
return 0;
} 3 1767
arnuld wrote:
this is an example programme that counts lines, words and characters.
i have noticed one thing that this programme counts space, a newline
and a tab as a character.
i know:
1. a newline is represented as '\n'
2. a tab as '\t'
3. a space as ' '
what i want to know is whether a newline, a space and a tab are
represented internally as characters ?
It depends on the machine and it's character set.
i know everything is represented as machine's character set, most
probably ASCII where 'A' is 65 but i am actually confused on this
'\t', '\n' , ' ', and character issue.
any help
Generally end-of-line sequence is represented by one or two
characters. Under UNIX it's a single linefeed character, while under
DOS-like systems it's a carriage-return followed by a linefeed. MacOS
used to use a single carriage-return. Doubtless other systems may use
more variations.
Spaces and tabs are usually represented by one character.
here is the code that counts characters,words,tabs and newlines:
// word counting
It's better to use /* ... */ style comments, especially when you're
posting code onto Usenet.
"arnuld" <ge*********@gmail.comwrites:
[snip]
You mean K&R, not Stroustrup.
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
"santosh" <sa*********@gmail.comwrites:
arnuld wrote:
>this is an example programme that counts lines, words and characters. i have noticed one thing that this programme counts space, a newline and a tab as a character.
i know:
1. a newline is represented as '\n' 2. a tab as '\t' 3. a space as ' '
what i want to know is whether a newline, a space and a tab are represented internally as characters ?
It depends on the machine and it's character set.
>i know everything is represented as machine's character set, most probably ASCII where 'A' is 65 but i am actually confused on this '\t', '\n' , ' ', and character issue.
any help
Generally end-of-line sequence is represented by one or two
characters. Under UNIX it's a single linefeed character, while under
DOS-like systems it's a carriage-return followed by a linefeed. MacOS
used to use a single carriage-return. Doubtless other systems may use
more variations.
[...]
But C's I/O routines, when operating on files opened in text mode,
hide those details for you. Regardless of how an end-of-line is
represented in an external file (and there are a *lot* of ways to do
this, including fixed-length records with no specific marker), it's
mapped to a single '\n' character.
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister" This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: arnuld |
last post by:
here is the code from section 2.5.1 from Stroustrup (Special Edition):
namespace Stack {
struct Rep; // definition of stack layout is...
|
by: arnuld |
last post by:
this is the code which runs without any trouble:
-----------------------------------------------------
#include <iostream>
#include <string>...
|
by: arnuld |
last post by:
problem: define functions F(char), g(char&) & h(const char&). call
them with arguments 'a', 49, 3300, c, uc & sc where c is a char, uc is
unsigned...
|
by: arnuld |
last post by:
Stroustrup starts chapter 6 with a programme for desk-calculator:
here is a grammer for the langugae accepted by the calcualtor:
program:
END ...
|
by: arnuld |
last post by:
i have 2 problems:
1.) in section 4.2 he uses:
bool is_open(File*)
i want to know why he uses the pointer, instead of these 2:
bool...
|
by: arnuld |
last post by:
there is no "compile-time error". after i enter input and hit ENTER i
get a run-time error. here is the code:
---------- PROGRAMME --------------...
|
by: arnuld |
last post by:
it works fine without any trouble. i want to have advice on improving
the code from any angle like readability, maintenance etc:
----------...
|
by: Wayne Shu |
last post by:
Now I'm reading Stroustrup's The C++ Programming Language(Special
Edition).
In section 4.4 Integer Types, he has wrote that "Using an unsigned...
|
by: arnuld |
last post by:
This one works to seem fine. Can I make this program better ?
1) the use of get(ch) function was inspired from Stroustrup 21.5.1, page
number...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
|
by: jalbright99669 |
last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS...
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...
| | |