473,396 Members | 1,724 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

strcmp

The following error appears: 'strcmp' : cannot convert parameter 1
from 'char' to 'const char *'. I've already tried using single
quotations. the header file
only contains the struct contents. The whole program is part of an
example found in my course work. Does strcmp only compare two sets of
strings or can it be used to determine the end of the string as well?

#include<iostream>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include "program2v.h"

using namespace std;

int main()
{
crecord *string1, *string2, t_str;

*string1 = t_str;

/// the error while( strcmp(*string1->customername, "\0"))
{
*string2 = *string1 + 1;
while( strcmp(*string2->customername, '\0'))
{
if(strcmp( *string1->customername, *string2->customername) > 0 )
{
t_str = *string1;
*string1 = *string2;
*string2 = t_str;

}
string2++;
}
string1++;
}
return 0;
}
Jul 19 '05 #1
6 12445
"muser" <ch**********@hotmail.com> wrote in message
news:f9**************************@posting.google.c om...
The following error appears: 'strcmp' : cannot convert parameter 1
from 'char' to 'const char *'. I've already tried using single
quotations. the header file
only contains the struct contents. The whole program is part of an
example found in my course work. Does strcmp only compare two sets of
strings or can it be used to determine the end of the string as well?

#include<iostream>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include "program2v.h"

using namespace std;

int main()
{
crecord *string1, *string2, t_str;

*string1 = t_str;
Uhm, 'string1' is a wild pointer, and you are just mighty lucky you did
not blow up your program right here. Make sure 'string1' and 'string2' point
to valid objects before working with them.

/// the error while( strcmp(*string1->customername, "\0"))
{
*string2 = *string1 + 1;
Same here. You are dereferencing pointer with an unknown value ...
while( strcmp(*string2->customername, '\0'))
What are you trying to do? 'strcmp', as the name suggests, takes two
strings (ie. char-arrays) and compares them. It looks like you want to
compare plain chars? If so, do this:

while (*string2->customername != '\0')
{
if(strcmp( *string1->customername, *string2->customername) > 0 )
What is the type of crecord::customername? char* ?
{
t_str = *string1;
*string1 = *string2;
*string2 = t_str;

}
string2++;
}
string1++;
}
return 0;
}


No offense, but I suggest you get a good tutorial online or a book
before coding more. From that snippet above, you seem to be confused by
pointers and objects and string manipulation.

hth
--
jb

(replace y with x if you want to reply by e-mail)
Jul 19 '05 #2
"muser" <ch**********@hotmail.com> wrote in message
news:f9**************************@posting.google.c om...
/// the error while( strcmp(*string1->customername, "\0"))
{
*string2 = *string1 + 1;
while( strcmp(*string2->customername, '\0'))
{
if(strcmp( *string1->customername, *string2->customername) > 0 )
{


Where is your structure defined ? Specifically, I need to know what data
type the "customername" field is. Also, the '\0' argument is not a valid
parameter type to strcmp(). What are you trying to accomplish ? If
customername is a pointer to a character string and you want to test if the
string is empty, you can just do something like:

while (*(string2->customername) == '\0')

Jul 19 '05 #3
muser wrote:

The following error appears: 'strcmp' : cannot convert parameter 1
from 'char' to 'const char *'. I've already tried using single
quotations. the header file
only contains the struct contents. The whole program is part of an
example found in my course work. Does strcmp only compare two sets of
strings or can it be used to determine the end of the string as well?

#include<iostream>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include "program2v.h"

using namespace std;

int main()
{
crecord *string1, *string2, t_str;
What is crecord?
*string1 = t_str;
You deferenced a pointer without having set it to any value. Where do
you think string1 points?

/// the error while( strcmp(*string1->customername, "\0"))


What is customername? What type? Are you sure that dereference does what
you think it does?
In the future, post *complete* minimal programs. We don't have your
header file.

Also, explain what the basic concept of the program is. Your code had no
comments at all.


Brian Rodenborn
Jul 19 '05 #4
Default User <fi********@company.com> wrote in message news:<3F***************@company.com>...
muser wrote:

The following error appears: 'strcmp' : cannot convert parameter 1
from 'char' to 'const char *'. I've already tried using single
quotations. the header file
only contains the struct contents. The whole program is part of an
example found in my course work. Does strcmp only compare two sets of
strings or can it be used to determine the end of the string as well?

#include<iostream>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include "program2v.h"

using namespace std;

int main()
{
crecord *string1, *string2, t_str;


What is crecord?
*string1 = t_str;


You deferenced a pointer without having set it to any value. Where do
you think string1 points?

/// the error while( strcmp(*string1->customername, "\0"))


What is customername? What type? Are you sure that dereference does what
you think it does?
In the future, post *complete* minimal programs. We don't have your
header file.

Also, explain what the basic concept of the program is. Your code had no
comments at all.


Brian Rodenborn

my code again in a simpler reworked format. strcmp produces the
following error:
C:\Program Files\Microsoft Visual
Studio\MyProjects\Valid\program2\program2v.cpp(52) : error C2664:
'strcmp' : cannot convert parameter 1 from 'char' to 'const char *'

if string1 and string 2 have to be const chars, how can i dereference
them later in the function?
#include <iostream>
#include <iomanip>
#include <fstream>
#include <cstring>
#include <cstdlib>
using namespace std;

struct crecord {
long customercode[5];
char customername[21];
char customeraddress[61];
double customerbalance;
double creditlimit;
};
crecord Newcrecord;

struct irrecord {
long customercode[5];
long partnum[5];
long issue_rec;

};
irrecord Newirrecord;

struct drecord {
long customercode[5];
};
drecord Newdrecord;

void sort( char* record )
{
char t_str;
char characterstring[5];
char* string1;
char* string2;
strncpy(characterstring, &record[2], 5);
characterstring[5] = '\0';

while(*(string1) != '\0')
{
*string2 = *string1;
*string2++;

while( *(string2) != '\0')
{
if(strcmp( *string1, *string2 ) > 0)
{
t_str = *string1;
*string1 = *string2;
*string2 = t_str;

}
string2++;
}
string1++;
}
return;
}




int main()
{
const char outfile[] = "A:\\514650VD.DAT";
ofstream validdata;

char temp2[256];

return 0;

}
Jul 19 '05 #5
muser wrote:
my code again in a simpler reworked format. strcmp produces the
following error:
C:\Program Files\Microsoft Visual
Studio\MyProjects\Valid\program2\program2v.cpp(52) : error C2664:
'strcmp' : cannot convert parameter 1 from 'char' to 'const char *'

if string1 and string 2 have to be const chars, how can i dereference
them later in the function?
The have to be POINTERS to const char. You are passing in a single char.
char* string1;
char* string2; if(strcmp( *string1, *string2 ) > 0)

You dereference the two char pointers, which yields a char, which
generates a diagnostic. Hurray, the system works! Go with this:

if(strcmp( string1, string2 ) > 0)

Brian Rodenborn
Jul 19 '05 #6
ch**********@hotmail.com (muser) writes:
The following error appears: 'strcmp' : cannot convert parameter 1
from 'char' to 'const char *'. I've already tried using single
quotations. the header file
only contains the struct contents.
... which would be necessary to understand what's going on here.
Please post the minimal *complete*, *compilable* example showing your
problem.
The whole program is part of an
example found in my course work. Does strcmp only compare two sets of
strings or can it be used to determine the end of the string as well?

#include<iostream>
#include<iomanip>
#include<cstdlib>
#include<cstring>
#include "program2v.h"

using namespace std;

int main()
{
crecord *string1, *string2, t_str;

*string1 = t_str;
Here you're assigning to a pointer for which no memory has been allocated.
/// the error while( strcmp(*string1->customername, "\0"))


It seems that crecord::customername is a char - strcmp is for comparing
char*. If you really want to compare two chars (which I doubt),
just use operator==, e.g.

if (*string1->customername == '\0')

Note the single quote.
I'm also wondering what you want to achieve with dereferencing
string1->customername - but without the header file, it's impossible to guess.

HTH & kind regards
frank

--
Frank Schmitt
4SC AG phone: +49 89 700763-0
e-mail: frankNO DOT SPAMschmitt AT 4sc DOT com
Jul 19 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: jl_post | last post by:
Hi, I recently wrote two benchmark programs that compared if two strings were equal: one was a C program that used C char arrays with strcmp(), and the other was a C++ program that used...
53
by: Allan Bruce | last post by:
Hi there, I am reading a file into a char array, and I want to find if a string exists in a given line. I cant use strcmp since the line ends with '\n' and not '\0'. Is there a similar function...
11
by: Eirik | last post by:
Shouldn't this code work? If not, why shouldn't it? #include <stdio.h> int main(void) { char yesno; char *yes = "yes";
9
by: Steven | last post by:
Hello, I have a question about strcmp(). I have four words, who need to be compared if it were two strings. I tried adding the comparison values like '(strcmp(w1, w2) + strcmp(w3, w4))', where...
13
by: Sameer | last post by:
Hi friends, I am beginner in C++. I am using g++ compiler. below is my code which gives error as " invlid conversion from 'char' to 'const char*' ..Plz help me with this. #include <iostream.h>...
36
by: Chuck Faranda | last post by:
I'm trying to debug my first C program (firmware for PIC MCU). The problem is getting serial data back from my device. My get commands have to be sent twice for the PIC to respond properly with...
0
by: noobcprogrammer | last post by:
#include "IndexADT.h" int IndexInit(IndexADT* word) { word->head = NULL; word->wordCount = 0; return 1; } int IndexCreate(IndexADT* wordList,char* argv)
47
by: fishpond | last post by:
One way I've seen strcmp(char *s1, char *s2) implemented is: return immediately if s1==s2 (equality of pointers); otherwise do the usual thing of searching through the memory at s1 and s2. Of...
2
by: thungmail | last post by:
There is partial code in C typedef struct message { int messageId; char *messageText; struct message *next; }message; ..... ..... ..... /* Get a node before a node */
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.