Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
2306Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
5907what 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 26492What is the difference between constant pointer and pointer to a constant. Give examples.
TCS,
4 12348what 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 8194what 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 10882In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
4 7169
Explain continue keyword in c
What is unary operator?
What is a scope resolution operator in c?
What is a far pointer in c?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
Do pointers need to be initialized?
What is typedef example?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What is #include stdio h?
What is sizeof array?
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
Difference between linking and loading?
What are called c variables?
What is the benefit of using #define to declare a constant?