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]5 Replies - 75 Views - Last Post: Yesterday, 08:09 PM
#1
Reputation: -1
- Posts: 9
- Joined: 22-May 13
Posted Yesterday, 07:33 PM
Any input into this code outputs infinite of what was entered resulting in program crash. Any idea why?#include<stdio.h> #include<string.h> #define ROT 13 int main() { char string[256]; int y = 0, e; printf("Please enter the required string\n"); fgets(string, 256, stdin); while (string[y] !='\0') { if(string[y] >='a' && string[y] <='z') { if((e= string[y] + ROT) <= 'z') putchar(e); else { e = string[y] - ROT; putchar(e); } } else putchar(string[y]); } return 0; }
Is This A Good Question/Topic? 0
Replies To: C - ROT13 string infinite output
#2
Reputation: 2979
- Posts: 19,035
- Joined: 14-September 07
Re: C - ROT13 string infinite output
Posted Yesterday, 07:51 PM
You're not incrementing 'y'
#3
Reputation: -1
- Posts: 9
- Joined: 22-May 13
Re: C - ROT13 string infinite output
Posted Yesterday, 07:53 PM
KYA, on 23 May 2013 - 07:51 PM, said:
You're not incrementing 'y'
How would I do that?
#4
Reputation: 3057
- Posts: 9,302
- Joined: 25-December 09
Re: C - ROT13 string infinite output
Posted Yesterday, 07:56 PM
You don't know how to increment a variable?Also cross posted here.
Jim
#5
Reputation: -1
- Posts: 9
- Joined: 22-May 13
Re: C - ROT13 string infinite output
Posted Yesterday, 07:59 PM
jimblumberg, on 23 May 2013 - 07:56 PM, said:
You don't know how to increment a variable?Also cross posted here.
Jim
I know how to increment, just don't know where to put it.
#6
Reputation: 3057
- Posts: 9,302
- Joined: 25-December 09
Re: C - ROT13 string infinite output
Posted Yesterday, 08:09 PM
What is the purpose of this increment?Where do you think you should put the increment?
Jim
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321705-c-rot13-string-infinite-output/
rueben randle mike trout ryan broyles st louis blues bulls jerel worthy alshon jeffery
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.