Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
2367Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
5957what is the output of the following program?
#include
what is the output of the following program?
#include
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
3 26649What is the difference between constant pointer and pointer to a constant. Give examples.
TCS,
4 12497what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
4 8340what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
7 11101In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
4 7332
Explain what is the stack?
What is the difference between constant pointer and constant variable?
Can a pointer be static?
What is the general form of function in c?
What is the data segment that is followed by c?
What is wrong with this code?
What are 'near' and 'far' pointers?
When can a far pointer be used?
What is the purpose of void in c?
How do you use a pointer to a function?
What is a pragma?
write a proram to reverse the string using switch case?
Why do we use return in c?
What are the rules for identifiers in c?
What is calloc in c?