Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
2420Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
6024what 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 26806What is the difference between constant pointer and pointer to a constant. Give examples.
TCS,
4 12690what 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 8502what 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 11304In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
4 7513
Can we change the value of static variable in c?
What are the types of operators in c?
the question is that what you have been doing all these periods (one year gap)
Does c have circular shift operators?
Is it better to use a macro or a function?
Write a code to generate divisors of an integer?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What are preprocessor directives in c?
When should volatile modifier be used?
Where register variables are stored in c?
When the macros gets expanded?
What is malloc calloc and realloc in c?
What is a macro, and explain how do you use it?
How to throw some light on the b tree?
Difference between linking and loading?