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]7 Replies - 77 Views - Last Post: Yesterday, 03:31 PM
#1
Reputation: 0
- Posts: 3
- Joined: Yesterday, 02:18 PM
Posted Yesterday, 02:22 PM
#include<stdio.h> #include<string.h> #include<conio.h> struct dictionary { char *word; char *mean; }; typedef struct dictionary Dictionary; int main() { char i; char* enter; Dictionary a[4]; a[0].word="absolutely"; a[0].mean="spoken used to tell someone that you agree completely"; a[1].word="act"; a[1].mean="to do somthing"; a[2].word="bore"; a[2].mean="to maake someone feel bored"; a[3].word="blame"; a[3].mean="to say or think that someone is responsible for something bad"; /* char* enter; gets_s(enter)*/ gets (enter); for(i=0;i<4;i++) { if(!strcmp(enter,a[i].word)){ printf("enter the word %s\n",a[i].mean); } } getchar(); getchar(); }
Mod edit - Please ![]()
Is This A Good Question/Topic? 0
Replies To: problem with a c dictionary code
#2
Reputation: 917
- Posts: 6,439
- Joined: 07-September 06
Re: problem with a c dictionary code
Posted Yesterday, 02:26 PM
What exactly is the problem you are having? The more information you give us, the more easily we can help you.
#3
Reputation: 0
- Posts: 3
- Joined: Yesterday, 02:18 PM
Re: problem with a c dictionary code
Posted Yesterday, 02:37 PM
gets didn't identified This post has been edited by GunnerInc: Yesterday, 09:33 PM
Reason for edit:: Quote be gone
#4
Reputation: 3
- Posts: 30
- Joined: 28-June 12
Re: problem with a c dictionary code
Posted Yesterday, 02:55 PM
hadeer57, on 07 May 2013 - 02:22 PM, said:
#include<stdio.h> #include<string.h> #include<conio.h> struct dictionary { char *word; char *mean; }; typedef struct dictionary Dictionary; int main() { char i; char* enter; Dictionary a[4]; a[0].word="absolutely"; a[0].mean="spoken used to tell someone that you agree completely"; a[1].word="act"; a[1].mean="to do somthing"; a[2].word="bore"; a[2].mean="to maake someone feel bored"; a[3].word="blame"; a[3].mean="to say or think that someone is responsible for something bad"; /* char* enter; gets_s(enter)*/ gets (enter); for(i=0;i<4;i++) { if(!strcmp(enter,a[i].word)){ printf("enter the word %s\n",a[i].mean); } } getchar(); getchar(); }
Mod edit - Please
/>
What is your problem with this program?
#5
Reputation: 0
- Posts: 3
- Joined: Yesterday, 02:18 PM
Re: problem with a c dictionary code
Posted Yesterday, 03:02 PM
Error 1 error C2660: 'gets_s' : function does not take 1 arguments This post has been edited by GunnerInc: Yesterday, 09:32 PM
Reason for edit:: Quote be gone
#6
Reputation: 843
- Posts: 3,948
- Joined: 09-June 09
Re: problem with a c dictionary code
Posted Yesterday, 03:13 PM
never use gets! gets is so dangerous that even gcc will warn you about using it. Use fgets, or something that can limit your input.
#7
Reputation: 1
- Posts: 2
- Joined: 01-May 13
Re: problem with a c dictionary code
Posted Yesterday, 03:19 PM
The reason you are getting that error is, gets_s takes two arguments. The first is your c string, the second is the sizeof your c string, so pass that as the second param of gets_s. I.E. gets_s(enter, sizeof(enter)); gets_s will read in n-1 characters of your string, until it reaches the newline character. Hope this helps.
#8
Reputation: 5636
- Posts: 22,447
- Joined: 23-August 08
Re: problem with a c dictionary code
Posted Yesterday, 03:31 PM
Not to mention reading into an uninitialized pointer.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/320503-problem-with-a-c-dictionary-code/
the giver march 30 rimm pauly d project adrienne rich autism cesar chavez day



কোন মন্তব্য নেই:
একটি মন্তব্য পোস্ট করুন