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
main() { char a[4]="HELLO"; printf("%s",a); }
void main() { char a[]="12345\0"; int i=strlen(a); printf("here in 3 %d\n",++i); }
write a c program to input initial & final time in the format hh:mm and find the time intervel between them? Ex inputs are initial 06:30 final 00:05 and 23:22 final 22.30
void main() { void *v; int integer=2; int *i=&integer; v=i; printf("%d",(int*)*v); }
plz tell me the solution.......... in c language program guess any one number from 1 to 50 and tell that number within 8 asking question in yes or no...............
Write a Program that Inputs 10 Numbers in an Array and Show the Maximum Number
What is full form of PEPSI
print numbers till we want without using loops or condition statements like specifically(for,do while, while swiches, if etc)!
main() { int k=1; printf("%d==1 is ""%s",k,k==1?"TRUE":"FALSE"); }
Give a very good method to count the number of ones in a 32 bit number. (caution: looping through testing each bit is not a solution)
What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql
#include<stdio.h> main() { char s[]={'a','b','c','\n','c','\0'}; char *p,*str,*str1; p=&s[3]; str=p; str1=s; printf("%d",++*p + ++*str1-32); }