Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
33% Quality Score
Upvotes Received
3
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
6
Posts with Downvotes
4
Downvoting Members
4
3 Commented Posts

27 Posted Topics

Member Avatar for The Dude

[QUOTE]Sun don't shine when it's raining.[/QUOTE] "Raining Cats and Dogs" doesn't mean a thing!

Member Avatar for Dani
3
11K
Member Avatar for thecoolman5

im glad there r some idiots in the world.. trolling arnd!! :D just to add a point. there is something called the unix shell(which most schools adopt in their servers) and then windows ofcourse uses command.com(which im sure u might not know of) and there r other DOS out there …

Member Avatar for Shinigetsu
0
1K
Member Avatar for blackcathacker

1. Peaceful Life 2. Good Company 3. Wish no one should wish in the future!

Member Avatar for james.lu.75491856
0
377
Member Avatar for donial

Problem definition: XYZ Railways have decided to automate the process of platform allocation. The menu based system performs the following operations 1. When a train arrives, the system allocates a platform from available platforms on inputting train number. 2. When a train leaves, the system deallocates the particular platform on …

Member Avatar for rubberman
0
227
Member Avatar for codeorder
Member Avatar for coolbeanbob

Basically you can learn any language and come up in the industry. A hardcore techie would know that its not the language that's important. After all language is a way to tell the computer to do stuff. Learn one language thoroughly and you'll understand what I mean

Member Avatar for jwenting
0
170
Member Avatar for sangeetha.r44

I'll tell u a little way to get it. I made this video, and if you watch it you'll realize you can download from any website with ease. Youtube Video on how videos are stored

Member Avatar for aditd
0
336
Member Avatar for uv4u

these are called GUIDs. There are hundreds of such, most notable ones are Try these Recycle Bin - %SystemRoot%\explorer.exe shell:RecycleBinFolder //Run from Start > Run Flip3d - C:\Windows\system32\rundll32.exe DwmApi #105 //Run from Start > Run CP Advance - shell:::{ED7BA470-8E54-465E-825C-99712043E01C} RecycleBin – shell:::{645FF040-5081-101B-9F08-00AA002F954E} And the best is God Folder Basically you …

Member Avatar for PrimePackster
0
297
Member Avatar for Azmah

most TLDs come bearing an annual fee. Only some like .tk or .co.cc are free I suggest you to google the details you need. There is a site howstuffworks. Search for "how domains work", "how webservers work". The video is pretty useful! You should have done some googling before posting …

Member Avatar for Azmah
0
286
Member Avatar for timetraveller92

[quote]Yes you can. But going from a useful, good coding practice that makes further development easy to hardcoded, poor coding practice that makes further development hard does not sound like a good idea. Any reason why you would recommend such a move?[/quote] It's because sometimes you do exactly what the …

Member Avatar for WaltP
-2
190
Member Avatar for lilsancho

There is no such thing as undefined behavior in C. It's programmers fault. The C compilers were made over a layer of abstractions. Everything is generalized. Only floating point wasn't and that was taken care of later. Anyways, my point is that there is no such thing as "UNDEFINED BEHAVIOR". …

Member Avatar for Narue
0
189
Member Avatar for klimburt

Try not to post here dude, Its a solved thread You can remove the define and replace the word NUMBERS with 5 through out program to make it purely for evaluating lowest of 5 Else, you can leave it as it is and run. Still the same thing :D [code=c]// …

Member Avatar for lokeshg
0
301
Member Avatar for zeus god

@zeusgod: Ignore him.. he sometimes does that! Must probably be because he has been here for over 5 years. Maybe he doesn't know the code so he did the easiest thing to increase his posting. Anyways here's the code. And don't be pissed off because of walle he wants to …

Member Avatar for YAMNA MIDHAT
0
239
Member Avatar for AccurateAG

@accurateAG: you want to convert all the line breaks to "space" character right? compile this sourcecode [CODE]#include<stdio.h> int main(int argc,char *argv[]) { FILE *fp,*fq; char ch; fp=fopen(argv[1],"r"); fq=fopen(argv[2],"w"); while(1) { ch=fgetc(fp); if(ch=='\n') fputc(32,fq); else fputc(ch,fq); if(ch==EOF) break; } fclose(fp); fclose(fq); return 0; } [/CODE] Or you can download the compiled …

Member Avatar for timetraveller92
0
366
Member Avatar for McLaren

do a port check from the control panel of XAMPP. See which program is occupying port 80 and kill it.! U know, u can even use IIS which is almost similar to XAMPP but it comes built in with Windows...

Member Avatar for McLaren
0
3K
Member Avatar for collinskawere

[CODE]#include<stdio.h> #define LINES 9 int main() { int i,j; for(i=1;i<=LINES;i++) { if(i-1<=LINES/2) { for(j=1;j<=i;j++) printf("*"); } else { for(j=LINES;j>=i;j--) printf("*"); } printf("\n"); } getchar(); } [/CODE] Just change the define number as per the number of lines u require

Member Avatar for collinskawere
0
169
Member Avatar for timetraveller92

I've got a domain-name that points to one IP When user types the domain name it should point to subdirectory's index.php When user type ip address it should open the index.php in root Anyone knows how to perform this? I've been using javascript top.location and even htaccess can't seem to …

0
72
Member Avatar for timetraveller92

This code is done using C. Whole point of it is to remove the name just before the first hyphen. Its blindly written so I haven't improved it and it has extra variables and no reuse of variables to save space. If anyone can just locate the error why the …

0
138
Member Avatar for murtazamzk
Member Avatar for timetraveller92
1
171
Member Avatar for ChrisMackle

small suggestion. just before "calculator v1" type do{ and b4 return 0; type cout<<"Do you want to try again (y/n)";cin>>retry;}while(retry=='y'); Also, declare char retry=='n'; at the start. Your code is perfect because u have used all the breaks properly. No break for default which is correct(it means u've understood how …

Member Avatar for WaltP
0
185
Member Avatar for mccarthy.den

nono.. its not the scanf! its the getchar. just add a fflush(stdin) statement before getchar and it will work fine

Member Avatar for WaltP
0
135
Member Avatar for Iphicles

google "let us C yashwant kanetkar filetype:pdf" and in the book goto "graphics programming". I guarantee that u'll understand it perfectly well. And read drawing shapes b4 moving to viewing bitmap

Member Avatar for timetraveller92
1
478
Member Avatar for Panathinaikos22
Member Avatar for stream4559

click options>directories and remove the directory address. That makes it point to default library address from the root folder having tc.exe And a small suggestion, if ur learning C using turbo C then google "let us C yashwant kanetkar filetype:pdf". I love that book! best to teach C systematically

Member Avatar for timetraveller92
0
209
Member Avatar for s_h_a_m

[url]http://www.daniweb.com/software-development/c/threads/390835[/url] I guess now seeing that code, u can figure it out :D

Member Avatar for timetraveller92
0
95
Member Avatar for Liuhh00

eitherway waltp is right. this program ain't got any use to anyone! whats the use of improving the code? make useful stuff, these kind of programs are for learning C. They don't need any improvements!!

Member Avatar for timetraveller92
0
359
Member Avatar for murtazamzk

google for steganography. this technique is called steganography. U think its a trick, but there r so many other encryptors also to do this trick. And btw, only way to find is to check the size and the headers

Member Avatar for timetraveller92
0
174

The End.