simple program of graphics and their output display


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


WHY DO WE USE A TERMINATOR IN C LANGUAGE?

2 Answers  


What are the two types of functions in c?

0 Answers  


What is getche() function?

0 Answers  


the operator for exponencation is a.** b.^ c.% d.not available

5 Answers   TCS,






What is function and its example?

0 Answers  


WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?

4 Answers  


What is the auto keyword good for?

0 Answers  


Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays

0 Answers  


What is meant by gets in c?

0 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


What is local and global variable in c?

0 Answers  


Categories