Monday, November 5, 2012

How to solving a Linear Function.

Name: Chhorn Bros
Major: TMD

Here I explain about how  to solving a linear function and  I have been made code and video in the below.

Code
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(void)
{
int x,y;
char label[100][100];
printf("Please to solving a Linear function:\n");
for(x=0;x<100;++x)
{
y=2*x-3;
printf("When X equal :%d then Yeqal is:%d \n",x,y);
}
system("pause");
return (0);
}

The Video

Link to video

No comments:

Post a Comment