What is the match merge ? compare data step match merge with
proc sql merge - how many types are there ? data step vs
proc sql
No Answer is Posted For this Question
Be the First to Post Answer
Implement a t9 mobile dictionary. (Give code with explanation )
1 Answers Amazon, Peak6, Yahoo,
Is the following code legal? typedef struct a aType; struct a { int x; aType *b; };
How we print the table of 3 using for loop in c programing?
What are segment and offset addresses?
#define int char main() { int i=65; printf("sizeof(i)=%d",sizeof(i)); }
Cluster head selection in Wireless Sensor Network using C programming language.
print a semicolon using Cprogram without using a semicolon any where in the C code in ur program!!
35 Answers Tata Elxsi, TCS, VI eTrans,
Write a prog to accept a given string in any order and flash error if any of the character is different. For example : If abc is the input then abc, bca, cba, cab bac are acceptable, but aac or bcd are unacceptable.
String reverse with time complexity of n/2 with out using temporary variable.
write a program for area of circumference of shapes
#include<stdio.h> int main() { int a=3,post,pre; post= a++ * a++ * a++; a=3; pre= ++a * ++a * ++a; printf("post=%d pre=%d",post,pre); return 0; }
main() { char *p; int *q; long *r; p=q=r=0; p++; q++; r++; printf("%p...%p...%p",p,q,r); }