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
Explain how can a program be made to print the line number where an error occurs?
write a program to print data of 5 five students with structures?
Just came across this question, felt worth sharing, so here it is I want you to make a C/C++ program that for any positive integer n will print all the positive integers from 1 up to it and then back again! Let's say n=5 I want the program to print: 1 2 3 4 5 4 3 2 1. Too easy you say? Okay then... You can ONLY USE: 1 for loop 1 printf/cout statement 2 integers( i and n) and as many operations you want. NO if statements, NO ternary operators, NO tables, NO pointers, NO functions!
Write a program to generate prime factors of a given integer?
list the no of files created when c source file is compiled
In which category does main function belong??
How can I generate floating-point random numbers?
Can a program have multiple main() functions?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
write a program to print largest number of each row of a 2D array
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
How can we allocate array or structure bigger than 64kb?