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
~4K People Reached
Favorite Tags
Member Avatar for ziyakhan10

This is a problem i had started having about a week ago. No new software has been installed or deleted. My router status light usually blinks and the net stays connected for about 10-15 mins before it gets frozen on either light on or off and the net gets disconnected. …

Member Avatar for Maplestory
0
188
Member Avatar for ziyakhan10

the program runs successfully but the final output comes out in the form of an infinite loop...please help [CODE] #include<iostream.h> #include<fstream.h> #include<conio.h> #include<stdio.h> struct emp { int eno; char name[20],desig[20]; float sal; }e; void main() { clrscr(); ofstream f1; f1.open("emp.dat",ios::app|ios::binary); char ch='y'; while(f1) { if(ch=='y'||ch=='Y') { cout<<"Enter the name"<<endl; gets(e.desig); …

Member Avatar for ziyakhan10
0
187
Member Avatar for ziyakhan10

This thing started about a month ago. I tried to burn a dvd but nero wasnt able to and after that my drive wasnt able to detect any dvds. i can still run cds though. i tried system restore but to no avail. config- HP compaq presario v6715EE C2D T7700 …

Member Avatar for Dani_938
0
62
Member Avatar for ziyakhan10

I am trying to write a program to find nearest prime to a number to its left...using for loop i just don't seem to get it right [CODE] #include<iostream.h> #include<conio.h> void main() { clrscr(); int n1,flag=0; cout<<"Enter The Number"<<endl; cin>>n1; for(int i=n1;i>0;i--) { for(int j=2;j<(i/2);j++) { if(i%j==0) { flag=0; } …

Member Avatar for Skeen
0
4K