Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
2363Device 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 26642What is the difference between constant pointer and pointer to a constant. Give examples.
TCS,
4 12489what 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 8333what 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 11096In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
4 7326
What is difference between structure and union in c programming?
Why are algorithms important in c program?
What is file in c language?
What is the purpose of 'register' keyword in c language?
What is a pointer on a pointer in c programming language?
Why do we use namespace feature?
How main function is called in c?
What is the difference between the = symbol and == symbol?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What are the general description for loop statement and available loop types in c?
Why we use conio h in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
How can a string be converted to a number?
When is a “switch” statement preferable over an “if” statement?
What are c identifiers?