Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
2367Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
5956what 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 26647What is the difference between constant pointer and pointer to a constant. Give examples.
TCS,
4 12494what 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 8338what 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 11099In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
4 7331
find the sum of two matrices and WAP for it.
What is 'bus error'?
What are the types of assignment statements?
What is a class c rental property?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Why is c called "mother" language?
How to compare array with pointer in c?
Explain what are global variables and explain how do you declare them?
Why do we need volatile in c?
Explain what is a pragma?
What is signed and unsigned?
Explain enumerated types in c language?
Difference between Shallow copy and Deep copy?
What is static volatile in c?
What is the function of this pointer?