Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
2426Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
6028what 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 26835What is the difference between constant pointer and pointer to a constant. Give examples.
TCS,
4 12719what 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 8532what 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 11337In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
4 7548
What are volatile variables in c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
In which header file is the null macro defined?
What are different storage class specifiers in c?
I need a sort of an approximate strcmp routine?
Explain the advantages of using macro in c language?
How many levels of pointers have?
What is structure and union in c?
What is the difference between ++a and a++?
Explain how does free() know explain how much memory to release?
Difference between linking and loading?
How do you sort filenames in a directory?
Where can I get an ansi-compatible lint?
What is the difference between struct and union in C?
What is nested structure?