Sponsored Content
Top Forums Programming Traversing in Array of pointers Post 302428300 by ramkrix on Wednesday 9th of June 2010 12:04:20 PM
Old 06-09-2010
Power Traversing in Array of pointers

Please find the below program. the requirement and description of the program also given:


Code:
ganesh@ubuntu:~/my_programs/c/letusc/chap9$ cat fa.c.old
/* Program : write a program to count the number of 'e' in thefollowing array of pointers to strings:

	char *s[] = {
			"We will teach you how to..",
			"Move a mountain",
			"Level a building",
			"Erase the past",
			"Make a million",
			"....all through C!"
		    };
*/

/* Date : 09-June-2010 */

# include <stdio.h>
# include <string.h>

int main(void)
{
        char *s[] = {
                        "We will teach you how to..",
                        "Move a mountain",
                        "Level a building",
                        "Erase the past",
                        "Make a million",
                        "....all through C!"
                    };
	int count=0;
	char *sptr;
	sptr=*s;

		while ( *sptr!='\0' ) {
			if (*sptr=='e') { ++count;}
	        	++(sptr);
		}
	printf("count of e's : %d\n", count); 
	return 0;
}

Output of the above program:

Code:
ganesh@ubuntu:~/my_programs/c/letusc/chap9$ gcc -o fa fa.c
ganesh@ubuntu:~/my_programs/c/letusc/chap9$ ./fa
count of e's : 2

It only counts the e's in first line. I know I have to traverse through rest of*s[]. But don't know how to do it. Can any one please help me in this?

Thanks in Advance,
Ramkrix

Last edited by Scott; 06-14-2010 at 09:23 AM.. Reason: Changed font=courier to code tags
 

10 More Discussions You Might Find Interesting

1. Programming

Pointers and array

hi all, let say i have a pointer exit, and this exit will store some value. how can i store the value that the pointer points to into an array and then print them out from the array. thanks in advance (2 Replies)
Discussion started by: dianazheng
2 Replies

2. UNIX for Dummies Questions & Answers

Traversing a file system

I'm pretty new at this UNIX stuff, and this may be a simple question but I'm kind of stuck :confused: Let's say I have a large directory structure of .essay files, where I saved all of the essays that I did over the last few years. Not all of the .essay files are in the same directory (all... (1 Reply)
Discussion started by: hooj
1 Replies

3. Programming

Vector Traversing

Hi i have the following structure struct S { char Mod_num; char val; char chr_nm_cd; } I am reading a 2GB file and inserting into the structure and writing into a vector. I feel like only vector will be a right option. I tried with multimap but it is memory intensive and hence i... (1 Reply)
Discussion started by: dhanamurthy
1 Replies

4. UNIX for Dummies Questions & Answers

script for traversing directory

hi please suggest a korn script which will traverse all subdirectory in the current directory? (2 Replies)
Discussion started by: ilayans
2 Replies

5. Programming

Problem with array of pointers

Hi All, I am using the array of pointers and storing the address of string.This is a global list. So i am using extern to give the reference of this list to another file and using reading the data from this string. But list is being corrupted and string is missing some characters in... (2 Replies)
Discussion started by: lovevijay03
2 Replies

6. Homework & Coursework Questions

Problem while traversing directories

I was given to create a backup of all files in a given directory(command line argument) into say /home/vishal/back and the back up files must be accordingly to the extension of the file i.e pdf files are saved in back/pdf doc files back/doc etc . I gave a recursive function to traverse through the... (1 Reply)
Discussion started by: davis7son
1 Replies

7. Shell Programming and Scripting

traversing a string

I am writing a script which will read a word and say how many vowels and consonants does the word contain. but i dont know how to traverse a string in shell scripting. if it was in C i'd have done something like this: cout<<"plz enter the word"<<endl; cin>>word; int consonants, vowels;... (4 Replies)
Discussion started by: nishrestha
4 Replies

8. Programming

Pointers and array

Hello, I read from a book exercise for a challenge. How to print out each letter of char array a by two different pointers pa and ppa in the example? I have tried my code for letter "r" by testing without full understanding as only the first one worked. #include<stdio.h> int main() { char... (17 Replies)
Discussion started by: yifangt
17 Replies

9. Programming

Traversing member of structure of vector C++

Hello, I want to loop thru a vector composed of many entries as structure, which contains sequenceID and sequence. At looping, delete any structure if the sequence is a perfect-match substring of another sequence of any other structure, so that the resulted vector contains only unique sequences.... (1 Reply)
Discussion started by: yifangt
1 Replies

10. Programming

How to Declare an array of function pointers?

I am attempting to create an array of function pointers. The examples I follow to do this are from: support.microsoft.com/en-us/help/30580/how-to-declare-an-array-of-pointers-to-functions-in-visual-c ... (3 Replies)
Discussion started by: spflanze
3 Replies
sincosd(3M)															       sincosd(3M)

NAME
sincosd(), sincosdf(), sincosdl(), sincosdw(), sincosdq() - functions that compute both sine and cosine of an argument specified in degrees SYNOPSIS
DESCRIPTION
These functions are available only for Integrity servers. stores the sine of x (x specified in degrees) in the object pointed to by sptr and stores the cosine of x in the object pointed to by cptr. is a version of it takes and arguments. is a version of it takes and arguments. is an version of it takes and arguments. is equivalent to on HP-UX systems. USAGE
To use these functions compile either with the default option or with the and the options. To use or compile also with the option. To use any of these functions, make sure your program includes and link in the math library by specifying on the compiler or linker command line. For more information, see the at the following site: RETURN VALUE
in the object pointed to by sptr and 1 in the object pointed to by cptr. If x stores NaN in the objects pointed to by its pointer arguments and raises the invalid exception. If x is NaN, stores NaN in the objects pointed to by its pointer arguments. ERRORS
No errors are defined. SEE ALSO
acosd(3M), asind(3M), atand(3M), atan2d(3M), cosd(3M), sincos(3M), sind(3M), tand(3M), math(5). STANDARDS CONFORMANCE
These functions are not specified by any standard. HP Integrity Server Only sincosd(3M)
All times are GMT -4. The time now is 08:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy