Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
2310Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
5910what 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 26507What is the difference between constant pointer and pointer to a constant. Give examples.
TCS,
4 12367what 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 8203what 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 10899In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?
4 7176
What is a file descriptor in c?
What is structure padding and packing in c?
Why do we use static in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
Explain what are the different file extensions involved when programming in c?
Where static variables are stored in c?
Explain union.
What is static and volatile in c?
Describe the steps to insert data into a singly linked list.
Explain what is the benefit of using #define to declare a constant?
What is spaghetti programming?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Write a program to find the biggest number of three numbers in c?
program to convert a integer to string in c language'
a c code by using memory allocation for add ,multiply of sprase matrixes