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]4 Replies - 98 Views - Last Post: Yesterday, 06:57 PM
#1
Reputation: 0
- Posts: 3
- Joined: Yesterday, 07:40 AM
Posted Yesterday, 07:52 AM
#include<stdio.h> #include<conio.h> #include<string.h> void main() { FILE *fp; char str[50],ch,temp[50]; int i; printf("enter the word to be searched"); gets(str); fp=fopen("file.txt","r"); if(fp==NULL) { printf("cant open file"); getch(); exit(); } else { while((ch=fgetc(fp))!=EOF) { i=0; while(ch!=' ') { temp[i]=ch; i++; ch=fgetc(fp); } temp[i]='\0'; if((strcmp(str,temp))==0) { printf("found"); } } } fclose(fp); getch(); }
After running this code it is not able to come out of the ouput screen after searching the required word. And I am not able to find anything wrong in it. Please help.
Is This A Good Question/Topic? 0
Replies To: searching simple word in a file in c
#2
Reputation: 126
- Posts: 1,297
- Joined: 13-June 08
Re: searching simple word in a file in c
Posted Yesterday, 08:31 AM
Well first of all, you never ever clear temp.Secondly, Can you kind of explain what you mean by 'doesn't leave the output screen?' Do you mean it doesn't close? Or that your find loop runs forever? Or what?
This post has been edited by ccubed: Yesterday, 08:32 AM
#3
Reputation: 965
- Posts: 3,375
- Joined: 19-February 09
Re: searching simple word in a file in c
Posted Yesterday, 03:52 PM
Possibly the words could be at the end of a line or the end of the file, so you may have to check for a newline and EOF here as well.23 while(ch!=' ')
isspace
#4
Reputation: 0
- Posts: 3
- Joined: Yesterday, 07:40 AM
Re: searching simple word in a file in c
Posted Yesterday, 06:51 PM
ccubed, on 15 May 2013 - 08:31 AM, said:
Well first of all, you never ever clear temp.Secondly, Can you kind of explain what you mean by 'doesn't leave the output screen?' Do you mean it doesn't close? Or that your find loop runs forever? Or what?
I mean it doesn't close. It gets stuck after displaying "found". It is not responding to any key of the keyboard.
#5
Reputation: 0
- Posts: 3
- Joined: Yesterday, 07:40 AM
Re: searching simple word in a file in c
Posted Yesterday, 06:57 PM
#define, on 15 May 2013 - 03:52 PM, said:
Possibly the words could be at the end of a line or the end of the file, so you may have to check for a newline and EOF here as well.23 while(ch!=' ')
isspace
Thanks a lot. It is now working.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/321125-searching-simple-word-in-a-file-in-c/
stevie wonder 2013 NFL Mock Draft paleo diet paleo diet earth day Luis Suarez Earth Day 2013
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.