Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
2361Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
5953what 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 26639What is the difference between constant pointer and pointer to a constant. Give examples.
TCS,
4 12488what 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 8324what 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 11092In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
4 7320
What is typedf?
What standard functions are available to manipulate strings?
How can I generate floating-point random numbers?
What is an endless loop?
Where are the auto variables stored?
What should malloc(0) do?
What is far pointer in c?
Can you add pointers together? Why would you?
What does the message "automatic aggregate intialization is an ansi feature" mean?
When is a “switch” statement preferable over an “if” statement?
swap 2 numbers without using third variable?
What are the different file extensions involved when programming in C?
What are header files in c?
What is memcpy() function?
What is ponter?