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 |
Extend the sutherland-hodgman clipping algorithm to clip three-dimensional planes against a regular paralleiepiped
write a c program to Create employee record by taking details like name, employee id, address and phone number. While taking the phone number, take either landline or mobile number. Ensure that the phone numbers of the employee are unique. Also display all the details
can u give me the c codings for converting a string into the hexa decimal form......
void main() { int x,y=2,z; z=(z*=2)+(x=y=z); printf("%d",z); }
Design an implement of the inputs functions for event mode
main() { show(); } void show() { printf("I'm the greatest"); }
How we print the table of 3 using for loop in c programing?
main() { int i =0;j=0; if(i && j++) printf("%d..%d",i++,j); printf("%d..%d,i,j); }
how many processes will gate created execution of -------- fork(); fork(); fork(); -------- Please Explain... Thanks in advance..!
why nlogn is the lower limit of any sort algorithm?
struct Foo { char *pName; }; main() { struct Foo *obj = malloc(sizeof(struct Foo)); clrscr(); strcpy(obj->pName,"Your Name"); printf("%s", obj->pName); } a. Your Name b. compile error c. Name d. Runtime error
How to read a directory in a C program?