cvjgjgjgjgg
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
May 21, 2013 at 7:22 PM
xor operator not working correctly with array
main
{
int a[2] = {2,3};
printf("before swapping: %d %d\n",a[0],a[1]);
//a[0] ^= a[1];
//a[1] ^= a[0];
//a[0] ^= a[1]; //this is working correctly.
a[0] ^= a[1] ^= a[0] ^= a[1]; //this didn't work correctly why?
prin
February 15, 2013 at 1:29 PM
xor operator not working correctly with array
main
{
int a[2] = {2,3};
printf("before swapping: %d %d\n",a[0],a[1]);
//a[0] ^= a[1];
//a[1] ^= a[0];
//a[0] ^= a[1]; //this is working correctly.
a[0] ^= a[1] ^= a[0] ^= a[1]; //this didn't work correctly why?
prin
February 15, 2013 at 1:28 PM
string manipulation in xml
im working on build.xml using apache ant...
in one of the targets i am assigning a var file with the full path of .sql files present in a folder.
while executing that .sql file in xml its giving me error as ""\" unexpected character"
solution is I
December 28, 2012 at 3:11 PM
getting files from VSS
I am not able to get the files from VSS.I am using following code.
March 16, 2012 at 10:39 AM
Medicare Part A
unbiased solution for comparing and enrolling in Medicare Advantage, Medicare Supplement and Prescription Drug Plans.
December 17, 2011 at 2:30 PM
html report generation in emma code coverage using ANT acript
Hi Deepak,
I am using emma code covarage tool and to generate coverage report by using Ant script i am getting following exception
[report] sun.io.MalformedInputException
[report] at sun.io.ByteToCharUTF8.convert(ByteToCharUTF8.java
December 8, 2011 at 8:56 AM
Ant build
Hi,
Can anybody help me how to refered to a build.xml file from a buil.xml file ? Like I have a main build.xml file where I have some tags and in another build.xml file I have the rest tags for the same project. So I want to connect the 2nd bu
February 7, 2011 at 2:50 PM
java compilation error
hi, i have a application in which i m reading from an xml file and then storing its values in database.but when i started using ant its main program is not running as it is unable to detect the jar file of mysql database.it is giving class not found
May 11, 2010 at 11:00 AM
How to create database in mysql using ANT build
Hello , can anybody tell me how to create a database in mysql using ant build.Please tell me detail with build.xml
January 13, 2010 at 5:15 PM