can you use proc sql to manpulate a data set or would u
prefer to use proc report ? if so why ? make up an example
and explain in detail
No Answer is Posted For this Question
Be the First to Post Answer
Is it possible to type a name in command line without ant quotes?
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it.
main() { int i = 100; clrscr(); printf("%d", sizeof(sizeof(i))); } a. 2 b. 100 c. 4 d. none of the above
write a program in c to merge two array
prog. to produce 1 2 3 4 5 6 7 8 9 10
Write a routine to implement the polymarker function
void main() { static int i; while(i<=10) (i>2)?i++:i--; printf(“%d”, i); }
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]); }
main() { char *p = "hello world"; p[0] = 'H'; printf("%s", p); } a. Runtime error. b. “Hello world” c. Compile error d. “hello world”
main() { printf("%x",-1<<4); }
how to return a multiple value from a function?
Is the following code legal? struct a { int x; struct a *b; }