How can I do graphics in c?


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

Post New Answer

More C Interview Questions

write a program that finds the factorial of a number using recursion?

13 Answers   Infosys, TATA,


to find the closest pair

0 Answers   Infosys,


If you know then define #pragma?

0 Answers  


What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these

2 Answers   Oracle,


Write a function that will take in a phone number and output all possible alphabetical combinations

0 Answers   Motorola,






what is the diffrenet bettwen HTTP and internet protocol

0 Answers  


What is structure and union in c?

0 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


WHAT IS FLOAT?

3 Answers  


Is it possible to execute code even after the program exits the main() function?

0 Answers  


What is a file descriptor in c?

0 Answers  


Why is c fast?

0 Answers  


Categories