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
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
void main() { int *i = 0x400; // i points to the address 400 *i = 0; // set the value of memory location pointed by i; }
main() { char a[4]="HELL"; printf("%s",a); }
Set up procedure for generating a wire frame display of a polyhedron with the hidden edges of the object drawn with dashed lines
to remove the repeated cahracter from the given caracter array. i.e.., if the input is SSAD output should of SAD
Program to find the largest sum of contiguous integers in the array. O(n)
void main() { int i=5; printf("%d",i+++++i); }
How to reverse a String without using C functions ?
33 Answers Matrix, TCS, Wipro,
Write a complete program that consists of a function that can receive two numbers from a user (M and N) as a parameter. Then print all the numbers between the two numbers including the number itself. If the value of M is smaller than N, print the numbers in ascending flow. If the value of M is bigger than N, print the numbers in descending flow. may i know how the coding look like?
main() { int i=-1; +i; printf("i = %d, +i = %d \n",i,+i); }
main() { struct student { char name[30]; struct date dob; }stud; struct date { int day,month,year; }; scanf("%s%d%d%d", stud.rollno, &student.dob.day, &student.dob.month, &student.dob.year); }
main() { main(); }