1 2 3 4 5 6 7 8 9 10 Next
Sort By :
Latest First | Oldest First | By Rating
|
Question |
Rating |
View Answer |
|
What is the use of sysprint, sysin, sysout, dummy in jcl ?
|
|
View Answer |
|
What is abend s322
|
|
View Answer |
|
56) What are the files which are automatically opened when a C file is executed? Answer: stdin, stdout, stderr (standard input,standard output,standard error).
|
|
View Answer |
|
102) void main() { int i=i++,j=j++,k=k++; printf(%d%d%d,i,j,k); }
|
|
View Answer |
|
What is a PROC? What is the difference between an instream and a catalogued PROC?
|
|
View Answer |
|
39) main() { int i=0; for(;i++;printf("%d",i)) ; printf("%d",i); }
|
|
View Answer |
|
33) 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]); }
|
|
View Answer |
|
What are SD37, SB37, SE37 abends? |
|
View Answer |
|
What is COND=EVEN ? |
|
View Answer |
|
79) main() { char *p; int *q; long *r; p=q=r=0; p++; q++; r++; printf("%p...%p...%p",p,q,r); }
|
|
View Answer |
|
8. main() { char *p; printf("%d %d ",sizeof(*p),sizeof(p)); }
|
|
View Answer |
|
What is the meaning of the EXEC statement keyword, COND? What is its syntax?
|
|
View Answer |
|
45) main() { extern out; printf("%d", out); } int out=100;
|
|
View Answer |
|
What is the improvement to COND= in the latest version of MVS?
|
|
View Answer |
|
47) main( ) { int a[2][3][2] = {{{2,4},{7,8},{3,4}},{{2,2},{2,3},{3,4}}}; printf(%u %u %u %d
,a,*a,**a,***a); printf(%u %u %u %d
,a+1,*a+1,**a+1,***a+1); }
|
|
View Answer |
|
90) main(){ unsigned int i; for(i=1;i>-2;i--) printf("c aptitude"); }
|
|
View Answer |
|
Explain concatenating datasets.
|
|
View Answer |
|
38) #define f(g,g2) g##g2 main() { int var12=100; printf("%d",f(var,12)); }
|
|
View Answer |
|
51) main( ) { void *vp; char ch = g, *cp = goofy; int j = 20; vp = &ch; printf(%c, *(char *)vp); vp = &j; printf(%d,*(int *)vp); vp = cp; printf(%s,(char *)vp + 3); }
|
|
View Answer |
|
What does a disposition of (NEW,CATLG,KEEP) mean? |
|
View Answer |
1 2 3 4 5 6 7 8 9 10 Next
|