No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
I have made a program to test if the string entered is a palindrome or not. Here's the source code: [code=c]#include <stdio.h> #include <ctype.h> #include <string.h> void clrsp(char *); void rev(const char *,char *); int main() { char str1[80],str2[80]; printf("Enter a string: "); fgets(str1,80,stdin); str1[strlen(str1)-1]='\0'; //eliminate newline clrsp(str1); //clear spaces … | |
[U]Which is the best IDE for C?[/U] Currently using Dev-Cpp. I am just wondering if there's any other better IDE around. Eclipse, NetBeans, Dev-Cpp, CodeBlocks or other??? thanks! | |
How to store the data of a program without using registry? Because I don't want the users change the registry and the program settings... Are there any other ways that can prevent the users from changing the settings? | |
Every time I turn on my computer, it tells me that the firewall is shut down. The message will then disappear after a while. And the firewall is turned on again. How can I fix this? | |
[ATTACH]10826[/ATTACH] Shouldn't the background of the button be changed to blue when i hover my cursor onto it? [ATTACH]10827[/ATTACH] When i am not hovering onto them, the background color of the button is white. Can this be fixed? What settings should I change? | |
Just want to say [B]HI[/B] to everyone on DaniWeb~ I am learning C and I think pointers and addresses are quite difficult... |
The End.