Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]2 Replies - 56 Views - Last Post: Today, 01:25 AM
#1
Reputation: 0
- Posts: 6
- Joined: Today, 12:56 AM
Posted Today, 01:06 AM
Hi all, just joined. I've written a segment of code that writes the first and last name of employess like so:last name, first name. To minimize the clutter in the main I want to get almost everything into a function so I've written this function that does string copies and string cats the last name and first name with a comma in the middle. However I received errors these are them:
arturo@arturo-Satellite-L305:~/Assign3c$ make g++ assign3c.cpp taxes.o Qsort.o -o main.exe assign3c.cpp: In function ?int main()?: assign3c.cpp:143:28: error: ?lastname? was not declared in this scope assign3c.cpp: In function ?void attachNames(char, char)?: assign3c.cpp:208:17: error: ?record? was not declared in this scope assign3c.cpp:208:24: error: ?i? was not declared in this scope assign3c.cpp:209:21: error: invalid conversion from ?char? to ?char*? [-fpermissive] /usr/include/string.h:136:14: error: initializing argument 1 of ?char* strcat(char*, const char*)? [-fpermissive] make: *** [main.exe] Error 1
void attachNames(char S_name, char lastname); //prototype
void attachNames(char S_name, char lastname);
void attachNames(char S_name, char lastname) { strcpy(S_name,record[i].lastname); strcat(S_name, ","); strcat(S_name, record[i].lastname); }
I have played around with the record and * and ampersands to see if something would work but nothing has. What am i doing wrong here?
Is This A Good Question/Topic? 0
Replies To: Variables not declared but are in global and in struct
#2
Reputation: 869
- Posts: 3,994
- Joined: 09-June 09
Re: Variables not declared but are in global and in struct
Posted Today, 01:13 AM
You are only passing characters to your functions, you need to pass char pointers to your strings.
#3
Reputation: 0
- Posts: 6
- Joined: Today, 12:56 AM
Re: Variables not declared but are in global and in struct
Posted Today, 01:25 AM
jjl, on 21 May 2013 - 01:13 AM, said:
You are only passing characters to your functions, you need to pass char pointers to your strings.
Okay so, and I promise to be better at this just given the chance...
void attachNames(char *S_name, char * lastname);
attachNames(&S_names, &lastname);
S_name is declared and lastname is in a struct...does that have any bearing?
char S_name[12+10];
jjl, on 21 May 2013 - 01:13 AM, said:
You are only passing characters to your functions, you need to pass char pointers to your strings.
Oh no I got it to work! Thank you!
Page 1 of 1
iOS 6 Features big brother iOS 6 bank of america Yunel Escobar Eye Black Cruel Summer Endeavor
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.