- Strength to Increase Rep
- +5
- Strength to Decrease Rep
- -1
- Upvotes Received
- 17
- Posts with Upvotes
- 15
- Upvoting Members
- 13
- Downvotes Received
- 11
- Posts with Downvotes
- 7
- Downvoting Members
- 8
- Interests
- Coding Coding Coding ...
- PC Specs
- Ubuntu Windows Xp
Re: If want sm help to start up .. use a counter and start counting with the first word, when SPACE detected word ends so temperoraly tht word has longest length store that length in a variable thn start counting length for next word, Compare word length for both. Depending on … | |
Re: You want to show how to shutdown ?????????????????????? | |
Re: U using older borland compiler may be .. It worked totally fine @ me .. I compiled in Dev-C++ it worked fine but not working in borland .. | |
Re: Here is another Turbo-C car racing game .. [URL="http://bit.ly/iefllI"]http://bit.ly/iefllI[/URL] | |
Re: use a for loop with a count start with i=1 thn have a MAX value .. inside loop go on printing count (i) numbers of stars U will get this * ** *** **** .... | |
Re: [B]I guess[/B] first you print [CODE]echo $oldpassworddb."<br>";[/CODE] which printing [B]123456[/B] means you [B]not using md5()[/B] while storing password into database .. | |
Hey friends .. Can anyone give me idea on how to Create a button similar to like button of facebook .. I think they use complicated API n all .. I want it to be simple but useful .. Can anyone help me with this please .. | |
how do i make the textbox automatically scroll down all the way to the bottom? thanx in advance | |
I am new to SQL .. [code]SELECT status FROM statuses ORDER BY date;[/code] I know this will order by date but i want to alter the table and rearrange them by datestamp.. Is it possible to alter like that ? | |
Re: If you have to read numbers of all 20 students thr is no need of scanning student_num. So remove that line and initialise student_num to 0. [CODE]student_num = 0;[/CODE] and better to read all numbers in one loop than use another loop to print them all at once.. And if … | |
Re: Yup ... [CODE] if (file = fopen(file_name, "r")) { printf("Exists"); fclose(file); } [/CODE] Merry Christmas to u too ... | |
Hi friends .. I have a mailing_list file .. I wanted to check whether the visitor entered Email already exists in file? Is there any standard function for it ? | |
Re: Apache 2.2.11 PHP 5.3.0 MySQL 5.1.36 [URL="http://www.wampserver.com/en/download.php"]http://www.wampserver.com/en/download.php[/URL] | |
Re: @Trentacle He casting to int directly dude how he will get correct int value?? @Vedro You can do like this, (with some Portability issues ;) ) [CODE] n = getchar()-'0'; [/CODE] Something good will come out ;) :D | |
Re: NULL is a macro defined in <stddef.h> for the null pointer. Its not '/0' its '\0' '\0' is defined to be a null character, a character with all bits set to zero.Used as end of string. | |
Hello friends .. I wanted a feedback form for my small site... Its pure HTML and i dont know anything about PHP .. I got a script which mails the form contents to the admin.. Here is the code [CODE] mail( "$webmaster_email", "Feedback Form Results", $comments, "From: $email_address" ); [/CODE] … | |
Re: But we have both char = char and char = int lines ... Is it not better if he uses both char and than convert to int wherever necessary .. [CODE] struct read_file { char first[100]; char second[100]; } var; fscanf(fp, "%s = %s", var.first, var.second); [/CODE] | |
Re: pointer is not initialized .. Following code ay help .. [CODE] #define MAX 100 data first; data *fp; first.name = malloc(MAX); fp = &first; scanf("%s",first.name); printf("fp is %s\n",fp->name); [/CODE] | |
Re: I got this [URL="http://www.portaudio.com/download.html"]http://www.portaudio.com/download.html[/URL] [URL="http://www.daniweb.com/code/showthread.php?t=216360"]http://www.daniweb.com/code/showthread.php?t=216360[/URL] | |
Re: I think K&R is best book to read after learning basics of C, I read BalaguruSwamy .. An indian author .. Heard about this book but not read .. [b]C Programming: A Modern Approach by K. N. King [/b] | |
Re: [B][COLOR="Red"]Toooooooooo Cool .. Super cool...[/COLOR][/B] [COLOR="Red"]Mera[/COLOR] Bharath [COLOR="Green"]Mahan[/COLOR] :) :) :) :) | |
Hello everyone .. Im learning PHP on my own .. I installed Apache on Windows XP and trying install PHP, tried both installer and manual way but its not working :( PHP scrips getting downloaded .. Can any one give me a good link for step by step installation ? | |
Re: I think you checking even new line char '\n'.. Try to trim newline char and than check for palidrome .. | |
Re: Its possible may be.. I dont know in C but i saw a similar program in C++ .. though didnt understood ;-) | |
Re: B4 posting it want to say im student and if any mistake im sorry May be like manually how we do ... Assign first term of p4 to p5 and then go on checking if same exponent term exists, If exists add thr coefficinents and if not than add that … | |
Re: @Colin mac . They are different functions used to get user inputs similar to scanf and getche() which your sir suggested.. U can google to know more about functions like getchar() getch() fgets() .. |