What is the difference between proc means and proc tabulate ?
explain with a simple example when you have to use means or
tabulate?
Answer / saikrishna arram
There is no much diffenrence between these two, In addition
to proc means speciality,Proc tabulate will also be used
for reporting purpose. but when compared to proc report for
reporting purpose, i would prefer proc report rather than
proc tabluate as it could give expected results.
Is This Answer Correct ? | 0 Yes | 0 No |
#define assert(cond) if(!(cond)) \ (fprintf(stderr, "assertion failed: %s, file %s, line %d \n",#cond,\ __FILE__,__LINE__), abort()) void main() { int i = 10; if(i==0) assert(i < 100); else printf("This statement becomes else for if in assert macro"); }
int main() { int x=10; printf("x=%d, count of earlier print=%d", x,printf("x=%d, y=%d",x,--x)); getch(); } ================================================== returns error>> ld returned 1 exit status =================================================== Does it have something to do with printf() inside another printf().
What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql
#ifdef something int some=0; #endif main() { int thing = 0; printf("%d %d\n", some ,thing); }
prog. to produce 1 2 3 4 5 6 7 8 9 10
how to check whether a linked list is circular.
Is there any difference between the two declarations, 1. int foo(int *arr[]) and 2. int foo(int *arr[2])
main() { int i =0;j=0; if(i && j++) printf("%d..%d",i++,j); printf("%d..%d,i,j); }
Write a C program to print ‘Campus Force training’ without using even a single semicolon in the program.
void main() { while(1){ if(printf("%d",printf("%d"))) break; else continue; } }
Display the time of the system and display the right time of the other country
main() { signed int bit=512, i=5; for(;i;i--) { printf("%d\n", bit >> (i - (i -1))); } } a. 512, 256, 0, 0, 0 b. 256, 256, 0, 0, 0 c. 512, 512, 512, 512, 512 d. 256, 256, 256, 256, 256