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 |
WAP to display 1,2,3,4,5........N
main() { int i = 3; for (;i++=0;) printf(ā%dā,i); }
Write a c program to search an element in an array using recursion
Write out a function that prints out all the permutations of a string. For example, abc would give you abc, acb, bac, bca, cab, cba. You can assume that all the characters will be unique.
5 Answers IITR, Microsoft, Nike,
main() { int i=0; for(;i++;printf("%d",i)) ; printf("%d",i); }
void main() { static int i=5; if(--i){ main(); printf("%d ",i); } }
#define max 5 #define int arr1[max] main() { typedef char arr2[max]; arr1 list={0,1,2,3,4}; arr2 name="name"; printf("%d %s",list[0],name); }
#define int char main() { int i=65; printf("sizeof(i)=%d",sizeof(i)); }
print numbers till we want without using loops or condition statements like specifically(for,do while, while swiches, if etc)!
#define a 10 int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } void foo() { #undef a #define a 50 }
#include<conio.h> main() { int x,y=2,z,a; if(x=y%2) z=2; a=2; printf("%d %d ",z,x); }
write a c-program to find gcd using recursive functions