What is the difference between proc means and proc tabulate ?
explain with a simple example when you have to use means or
tabulate?



What is the difference between proc means and proc tabulate ? explain with a simple example when yo..

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

Post New Answer

More C Code Interview Questions

#include <stdio.h> #define a 10 main() { #define a 50 printf("%d",a); }

2 Answers  


Write a C program to print ‘Campus Force training’ without using even a single semicolon in the program.

3 Answers   Wipro,


4. Main() { Int i=3,j=2,c=0,m; m=i&&j||c&I; printf(“%d%d%d%d”,I,j,c,m); }

2 Answers   Broadridge,


main() { extern int i; { int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); } int i;

1 Answers  


could you please send the program code for multiplying sparse matrix in c????

0 Answers  






posted by surbhi just now main() { float a = 5.375; char *p; int i; p=(char*)&a; for(i=0;i<=3;i++) printf("%02x",(unsigned char) p[i]); } how is the output of this program is :: 0000ac40 please let me know y this output has come

2 Answers   GATE,


Write a routine that prints out a 2-D array in spiral order

3 Answers   Microsoft,


main( ) { int a[ ] = {10,20,30,40,50},j,*p; for(j=0; j<5; j++) { printf(“%d” ,*a); a++; } p = a; for(j=0; j<5; j++) { printf(“%d ” ,*p); p++; } }

1 Answers  


main() { show(); } void show() { printf("I'm the greatest"); }

2 Answers  


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,


main() { static char names[5][20]={"pascal","ada","cobol","fortran","perl"}; int i; char *t; t=names[3]; names[3]=names[4]; names[4]=t; for (i=0;i<=4;i++) printf("%s",names[i]); }

2 Answers  


main() { int i=5,j=6,z; printf("%d",i+++j); }

2 Answers  


Categories