uhm...i want to start printing the derivative at that cooridanate...h owever, the cursor is not moving even if i try to change the value of x by incrementing...
can u pls tell me why it happened so?...
User Profile
Collapse
-
printing derivative
gud am...i am currently working with a project of mine which is about derivative...an d i am having some problem with the printing of the derivative...
here is the block of code i used:
/* print derivative of each term */
x=30;
gotoxy(x, 15);
if(exponent!=0) {
if(coefficient* exponent>=1){
printf("%d",coe fficient*expone nt);
x++;
}
... -
math and comp. sci
how is math related to computer science? is it possible to become an effective programmer without studying higher mathematics? -
elow..thank you for the reply....i used the array[5][7] for i want to use 2d array in my calendar..i picked 5 and 7 for these are the dimensions i think that will need...thank you again...:DLeave a comment:
-
mini calendar
elow everyone...am just a beginner in c and am having some problem in making a mini calendar using 2d arrays and functions... i was able to print out the days 1- 31 however i could not control where it should start...here are the codes i used(am not really sure if these was really it):
[code=c]
void jan(void){
int array[5][7];
int x, y, days;
for(x=0; x<5; x++){
for(y=0; y<7; y++){
... -
c calendar
hi...a just a beginner in c... i just want to ask how can i make a calendar using fucntions and arrays...tnx po....
No activity results to display
Show More
Leave a comment: