Sponsored Content
Top Forums Programming Simple C program to count word lengths Post 302983673 by Don Cragun on Friday 14th of October 2016 04:16:35 PM
Old 10-14-2016
Quote:
Originally Posted by Riker1204
Quote:
Originally Posted by flimbar
Looks like an assignment question to me
I'm not sure what you are tying to imply, but I am currently doing the classic K&M C programming language book for self study.

Answers to all questions are freely available on numerous sites, and I can and will consult them if need be, but I would rather ask here as I would rather do the "bulk" of the question myself, as in the case here. Simply consulting the answer is not very academically useful.

I generally gain useful nuggets of wisdom here that I will not gain elsewhere.
Hi Riker1204,
I believe flimbar was asking whether or not this was a homework assignment. As you know, homework assignments are only accepted at The UNIX & Linux Forums in the homework and coursework questions subforum under special homework rules.

Obviously disedorgue and Corona688 did not believe that this was a homework assignment and it didn't appear to me to be one to me either, but it is close to that point where we start to wonder. When you start threads like this in the future, you might want to explicitly mention what you are doing and what prompted you to ask your question so readers won't wonder if you're asking us to do your homework for you.

Cheers,
Don

PS. What is the classic K&M C programming language book you referenced? The classic C book I usually think about is K&R C.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How do I count # of char. in a word?

I havent done shell scripting in quite some time. I want to know how to count the number of characters in a word, specifically a parameter. Example: myscript hello I want "myscript" to return the number of charcaters in the parameter "hello". Any ideas? (9 Replies)
Discussion started by: xadamz23
9 Replies

2. UNIX for Dummies Questions & Answers

count word

hi, given a file i need to get the first line and secodn line and count each of the line whether the length of first line and second line is the same i don;t know how to get the length of the line...seems like use 'wc' cannot do it... please advice (1 Reply)
Discussion started by: ariuscy
1 Replies

3. Shell Programming and Scripting

specified word count

hi iam trying to do a specified word count on file called text i have a few ideas but don't get the result i want do any one have a idea please help i have this at the moment cat text echo "Please enter the word you are looking for:" read string echo "the word < $string > occurs in... (5 Replies)
Discussion started by: bhaviknp
5 Replies

4. UNIX for Dummies Questions & Answers

Word Count

Hi All, Please let me know how to get the count of a particular word in a file. Example. I am looking for count of word 'result' in a file abc.xml. Thanks, Shankar (10 Replies)
Discussion started by: s_chowhan
10 Replies

5. Fedora

word count wc

could someone explain this please. echo aaaa|wc -c 5 echo aaaa|wc -m 5 But I'd expect the count to be 4 Its SunOS 5.8 Thanks in Advance. (5 Replies)
Discussion started by: chaandana
5 Replies

6. Shell Programming and Scripting

Word count of lines ending with certain word

Hi all, I am trying to write a command that can help me count the number of lines in the /etc/passwd file ending in bash. I have read through other threads but am yet to find one indicating how to locate a specifc word at the end of a line. I know i will need to use the wc command but when i... (8 Replies)
Discussion started by: warlock129
8 Replies

7. UNIX for Advanced & Expert Users

Word count

Script that lists all words used in one or more files and displays their count (pattern /\W+/ to split the lines of the input file into words can b used).. It should display list in format word:count...gets Filename as an cmd line argument! eg: $perl test doc (where doc is d file we are going to... (4 Replies)
Discussion started by: aadi_uni
4 Replies

8. Shell Programming and Scripting

if, word count

Hi, I need to count the lines of a file stack.html and if the amount lines i want to do something. At this moment, I have if ; then ... This is not working. Any ideas? Thanks! (3 Replies)
Discussion started by: azertyazerty
3 Replies

9. Shell Programming and Scripting

Word Count error

I need to read a trigger file whose name can be: ABC!DEF@2014.txt or ABC!DEF@2014,2015.txt and then carry out functions on those inputs. Currently I am doing: YEAREXPORT { FILE= xyz.txt ls ABC* -l > ${FILE} if ; then log_err "Trigger File ABC* does not exist!" fi (4 Replies)
Discussion started by: rajiv_kool
4 Replies

10. UNIX for Beginners Questions & Answers

UNIX script to check word count of each word in file

I am trying to figure out to find word count of each word from my file sample file hi how are you hi are you ok sample out put hi 1 how 1 are 1 you 1 hi 1 are 1 you 1 ok 1 wc -l filename is not helping , i think we will have to split the lines and count and then print and also... (4 Replies)
Discussion started by: mirwasim
4 Replies
elf_getphdr(3E) 														   elf_getphdr(3E)

NAME
elf32_getphdr, elf32_newphdr, elf64_getphdr, elf64_newphdr - retrieve class-dependent program header table for elf32 and elf64 files, respectively SYNOPSIS
[flag... ] file... [library] ... DESCRIPTION
For a 32-bit class file, returns a pointer to the program execution header table, if one is available for the ELF descriptor elf. allocates a new table with count entries, regardless of whether one existed previously, and sets the bit for the table (see elf_flag(3E)). Specifying a zero count deletes an existing table. Note this behavior differs from that of (see elf_getehdr(3E)), allowing a program to replace or delete the program header table, changing its size if necessary. If no program header table exists, the file is not a 32-bit class file, an error occurs, or elf is null, both functions return a null pointer. Additionally, returns a null pointer if count is zero. The table is an array of structures, each of which includes the following members. The ELF header's member tells how many entries the program header table has (see elf_getehdr(3E)). A program may inspect this value to determine the size of an existing table; automatically sets the member's value to count. If the program is building a new file, it is responsible for creating the file's ELF header before creating the program header table. For a 64-bit class file, returns a pointer to the program execution header table, if one is available for the ELF descriptor elf. allocates a new table with count entries, regardless of whether one existed previously, and sets the bit for the table (see Specifying a zero count deletes an existing table. Note this behavior differs from that of (see elf_getehdr(3E)), allowing a program to replace or delete the program header table, changing its size if necessary. If no program header table exists, the file is not a 64-bit class file, an error occurs, or elf is null, both functions return a null pointer. Additionally, returns a null pointer if count is zero. The table is an array of structures, each of which includes the following members. The ELF header's e_phnum member tells how many entries the program header table has (see elf_getehdr(3E)). A program may inspect this value to determine the size of an existing table; automatically sets the member's value to count. If the program is building a new file, it is responsible for creating the file's ELF header before creating the program header table. SEE ALSO
elf(3E), elf_begin(3E), elf_flag(3E), elf_getehdr(3E). elf_getphdr(3E)
All times are GMT -4. The time now is 11:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy