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 |
main() { printf("%d", out); } int out=100;
Is the following code legal? typedef struct a { int x; aType *b; }aType
Write a program to check whether the number is prime and also check if it there i n fibonacci series, then return true otherwise return false
String reverse with time complexity of n/2 with out using temporary variable.
main() { char *a = "Hello "; char *b = "World"; clrscr(); printf("%s", strcat(a,b)); } a. Hello b. Hello World c. HelloWorld d. None of the above
What is the output of the program given below main() { signed char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
#include<stdio.h> main() { const int i=4; float j; j = ++i; printf("%d %f", i,++j); }
what is oop?
what is the output of following program ? void main() { int i=5; printf("%d %d %d %d %d ",i++,i--,++i,--i,i); }
void main() { int i=5; printf("%d",i+++++i); }
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,
Design an implement of the inputs functions for event mode