% let A=3+4 what is result
Answers were Sorted based on User's Feedback
%let a=%eval(3+4);
%put &a;
answers is : 7
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / narendra
%let A=3+4;
%put &a;
Answer is 3+4.
If you do like this
%let a=%eval(3+4);
%put &a;
Then answer is 7
| Is This Answer Correct ? | 3 Yes | 0 No |
What are the data types in sas?
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
What is difference between N and n????
code the tables statement for a single level frequency?
What statement do you code to tell SAS that it is to write to an external file?
What do the put and input function do?
How to read an input file in sas?
what is the prob plot in clinical domain
wat has been most common programming mistake?
Enlist the syntax rules followed in sas statements.
what is the effect of the options statement errors=1? : Sas programming
How can I remove header from output data set?