A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT
I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
No Answer is Posted For this Question
Be the First to Post Answer
What are global variables?
Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain
how to impliment 2 or more stacks in a single dimensional array ?
What are the advantages of c language?
Explain what is the benefit of using an enum rather than a #define constant?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.
how will you write a program on linked lists using JAVA programming???????????
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is the difference between Printf(..) and sprint(...) ?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
write a programe to find the factorial of given number using recursion
When should I declare a function?