What is the match merge ? compare data step match merge with
proc sql merge - how many types are there ? data step vs
proc sql
No Answer is Posted For this Question
Be the First to Post Answer
why the range of an unsigned integer is double almost than the signed integer.
What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?
main() { int i=4,j=7; j = j || i++ && printf("YOU CAN"); printf("%d %d", i, j); }
Given a list of numbers ( fixed list) Now given any other list, how can you efficiently find out if there is any element in the second list that is an element of the first list (fixed list)
3 Answers Disney, Google, ZS Associates,
All the combinations of prime numbers whose sum gives 32
main() { int i = 258; int *iPtr = &i; printf("%d %d", *((char*)iPtr), *((char*)iPtr+1) ); }
main() { char *p = “ayqm”; char c; c = ++*p++; printf(“%c”,c); }
Display the time of the system and display the right time of the other country
Code for 1>"ascii to string" 2>"string to ascii"
1 Answers Aricent, Global Logic,
Which version do you prefer of the following two, 1) printf(“%s”,str); // or the more curt one 2) printf(str);
typedef struct error{int warning, error, exception;}error; main() { error g1; g1.error =1; printf("%d",g1.error); }
main() { int i=3; switch(i) { default:printf("zero"); case 1: printf("one"); break; case 2:printf("two"); break; case 3: printf("three"); break; } }