Showing posts with label library. Show all posts
Showing posts with label library. Show all posts
Saturday, November 19, 2016
Build prop Tools Library
Build prop Tools Library
Over the past few days I have been working on making a library that makes it easier for app developers to edit the build.prop file from their applications. I decided to make this library when I needed to edit build.prop from within an app Im developing and I couldnt find a library to make this simple. So, after I had worked out how to do it and tested the code in my app, I made it into a library, because I think this will help quite a few developers.
Anyway, here it is on Google Code: http://code.google.com/p/build-prop-tools/
The download link is there on the project page, along with the source.
The methods are all documented, and there are a couple of wiki pages, an FAQ (its not a very long FAQ
) and a tutorial.
I hope this helps people
Anyway, here it is on Google Code: http://code.google.com/p/build-prop-tools/
The download link is there on the project page, along with the source.
The methods are all documented, and there are a couple of wiki pages, an FAQ (its not a very long FAQ
I hope this helps people
Current Device: HTC Wildfire S
ROM: CyanogenMod 10
Other devices: BlackBerry 8800: bricked
Websites: tezlastorme.tk my (blog?) site, landsofdarkan.tk, landsofdarkanforum.tk, teamobvious.tk
My work:
Wildfire S Root and CWM Guide
[Library]Build.prop Tools
I have hidden the rest of my sig because it was huge


ROM: CyanogenMod 10
Other devices: BlackBerry 8800: bricked
Websites: tezlastorme.tk my (blog?) site, landsofdarkan.tk, landsofdarkanforum.tk, teamobvious.tk
My work:
Wildfire S Root and CWM Guide
[Library]Build.prop Tools
I have hidden the rest of my sig because it was huge
Available link for download
Saturday, November 5, 2016
C program to check whether given String is Palindrome or not using Library Functions
C program to check whether given String is Palindrome or not using Library Functions
A string is called a palindrome when on reversing it, we get the same original string.This C program checks whether the entered string is palindrome or not using library functions.For these purpose a header file String.h has been included in the program which contains strcpy( ),strrev (),strcmp( ) and various other string manipulating methods
The string is input by the user using gets(). Using gets() allows the compiler to input the spaces of string also. The length of string is calculated using library functions and the result is printed on compiler screen using printf.
Source Code-
Output-

The string is input by the user using gets(). Using gets() allows the compiler to input the spaces of string also. The length of string is calculated using library functions and the result is printed on compiler screen using printf.
Source Code-
#include
#include
int main()
{
char a[100],b[100];
printf("Enter your String : ");
gets(a);
strcpy(b,a);
strrev(a);
if(strcmp(a,b)==0)
printf("The Given String is a palindrome");
else
printf("The given String is not a palindrome");
return 0;
}

Available link for download
Subscribe to:
Posts (Atom)