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() { unsigned int i=65000; while(i++!=0); printf("%d",i); }
#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); }
How can u say that a given point is in a triangle? 1. with the co-ordinates of the 3 vertices specified. 2. with only the co-ordinates of the top vertex given.
#include<conio.h> main() { int x,y=2,z,a; if(x=y%2) z=2; a=2; printf("%d %d ",z,x); }
Sir... please give some important coding questions asked by product companies..
void main() { void *v; int integer=2; int *i=&integer; v=i; printf("%d",(int*)*v); }
What is the hidden bug with the following statement? assert(val++ != 0);
Is the following code legal? typedef struct a { int x; aType *b; }aType
main() { char *p = “ayqm”; printf(“%c”,++*(p++)); }
29 Answers IBM, TCS, UGC NET, Wipro,
Sorting entire link list using selection sort and insertion sort and calculating their time complexity
1 Answers Infosys, Microsoft, NetApp,
which function is used to clear the buffer stream on gcc? for example: I wrote following code on gcc #include<stdio.h> int main(void) { char ch; int a,b; printf("\nenter two numbers:\t"); scanf("%d%d",&a,&b); printf("enter number is %d and %d",a,b); printf("\nentercharacter:\t"); scanf("%c",&ch); printf("enter character is %c",ch); return 0; } in above progarm ch could not be scan. why?plz tell me solution.
what is oop?