Programming Code (840)
Scripts_Markup Code (257) I have multiple datasets and I have to search a particular string in all of them at a single time. Please suggest a full jcl or rexx tool for it.
1016#define a 10 int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } void foo() { #undef a #define a 50 }
3 3766#define a 10 void foo() { #undef a #define a 50 } int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } explain the answer
1 3535
program for straight line(y=mx+c)
Write a program that implements a date class containing day, month and year as data members. Implement assignment operator and copy constructor in this class.
Code for Two Classes for Doing Gzip in Memory?
Write a python program to check if a number is a palindrome or not?
Can you write a program to find the average of numbers in a list in python?
What is the meaning of version in XML?
Write a program that will convert an integer pointer to an integer and vice-versa.
how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns
Write a python program to print table of a given number?
Code for Easily Using Hash Table?
Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }
maximizing the main window
How to export 2 datatables of a single dataset to 2 different worksheets of a single MSExcel file ?
What is a StAX Parser?
Write a script to delete all the files in a folder except one desired file.