- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 6
- Posts with Downvotes
- 4
- Downvoting Members
- 4
27 Posted Topics
Re: [QUOTE]Sun don't shine when it's raining.[/QUOTE] "Raining Cats and Dogs" doesn't mean a thing! | |
Re: 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 … | |
Re: 1. Peaceful Life 2. Good Company 3. Wish no one should wish in the future! | |
Re: 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 … | |
| |
Re: 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 | |
Re: 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 | |
Re: 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 … | |
Re: 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 … | |
[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 … | |
Re: 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". … | |
Re: 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]// … | |
Re: @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 … | |
Re: @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 … | |
Re: 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... | |
Re: [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 | |
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 … | |
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 … | |
Re: google for stenography. And you will find more ways that this. | |
Re: 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 … | |
Re: nono.. its not the scanf! its the getchar. just add a fflush(stdin) statement before getchar and it will work fine | |
Re: 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 | |
Re: 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 | |
Re: [url]http://www.daniweb.com/software-development/c/threads/390835[/url] I guess now seeing that code, u can figure it out :D | |
Re: 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!! | |
Re: 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 |
The End.