Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
Ranked #3K
~782 People Reached
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for jeffige

If you are using a Turbo C++ editor, then Alt+F5 will also let you see the result apart from putting getch(); Getch is nothing but a function which makes the control of the program wait till an interrupt is received from the keyboard....

Member Avatar for Ancient Dragon
0
147
Member Avatar for bharaniabhishek

Try this # include "stdio.h" If this also fails then delete current installation and perform a fresh installation.. Collect the installation file from below link :- <url snipped>

Member Avatar for abhikkumarbasu
0
253
Member Avatar for larry12720

Your error is right here :- while(strcmp(pt->next, ' ')!=0) Because it will be while(strcmp(pt->next, ' ')!='\0') The loop will continue till it finds the null character which is the default unseen character.... ENJOY

Member Avatar for abhikkumarbasu
0
150
Member Avatar for fiz hafiz

[QUOTE=fiz hafiz;550630][CODE=c]#include<stdio.h> #include<ctype.h> #define FILENAME "computing" //void proceed(struct registration com, int matric); //void again(struct registration com); struct registration { char code[10]; char subject[100]; int credit; }; int main() { int matric; char name; FILE *ECE; ECE = fopen(FILENAME, "r"); //struct registration com; puts("Welcome to pre-registration for sem 1 2008/2009\n"); puts("Enter …

Member Avatar for abhikkumarbasu
0
117
Member Avatar for joshmo

instead of this :- printf("\nDo you wish to continue? (Y/N): "); scanf("%c", &resp); try this :- char a; - - - - - a=getch();//or a=getche(), mind the difference between GETCH() AND GETCHE() Now your normal code , i.e if(a!='y'||a!='Y') { do this....; } else { do that; }

Member Avatar for joshmo
0
115

The End.