How to rename A1-A30 datasets into B1-B30 using macros?
Answer / rajasekhar m
%macro rename;
%do i=1 %to 30;
proc datatsets;
change a&i. = b&i.;
quit;
%end;
%mend;
%rename;
| Is This Answer Correct ? | 0 Yes | 0 No |
Diff between Proc transpose and Arrays with example?
what are the steps for creating prompt table dynamically for the specified field
Create a class TicTacToe that will enable you to write a complete program to play the game of Tic-Tac-Toe. The class contains as private data a 3- by-3 double array of integers. The constructor should initialize the empty board to all zeros. Allow two human players. Wherever the first player moves, place a 1 in the specified square; place a 2 wherever the second player moves. Each move must be to an empty square. After each move determine whether the game has been won and whether the game is a draw. If you feel ambitious, modify your program so that the computer makes the moves for one of the players automatically. Also, allow the player to specify whether he or she wants to go first or second. If you feel exceptionally ambitious, develop a program that will play three-dimensional Tic-Tac-Toe on a 4-by-4-by-4
what is best way to create a Thread class & why?
what are methods we have in connection pooling
What are the five tracing levels in System.Diagnostics.TraceSwitcher?
Is CTS company do serious backgroung check?
What is the difference between CLEAR & RESET and OPEN & CLOSE OPCOEDS(USING RPG/400).wheare we can use this?can any body tell me in real time senario with example please?
if 3 duplicate records, by keeping one original and one duplicate record, and how to delete remaining 2 duplicates in sql server 2008
hi..this is kartheek..complted mca in 2009..but i dont have knowledge in programing..but to learn new language.. which one is suitable for me?is SAP or IBM mainframes is suitable for me..?if it suits how much will it costs..?pls answer...
which worker is involved in all the phases of SDLC?
How to display questions one by one in jsp and I wants to store the answers in my database?