编程中国 | 业界新闻 | 技术文章 | 视频教程 | 下载频道 | 程序源码 | 个人空间 | 编程论坛  
 41 12345
发新话题
打印

[求助]多长时间能学会c语言?

[求助]多长时间能学会c语言?

多长时间能学会c语言?

TOP

我才开始学习,不知道还要走多久

TOP

这个问题问了等于没问,学习是没有止境的

TOP

灌水啊灌水

我这辈子应该学不会了八

TOP

我也觉得,像我这样的笨蛋最多玩玩dos,编程——没戏了

TOP

慢慢学吧,学多少是多少吧

天生wo才必有用

TOP

学会受益终身
  好好学呀  
   学编程
     找工作
       不得不做

TOP

编程我一看就头痛!!!!!!!!!··············~~~~~~
看不懂啊!!!!!

TOP

#include<stdio.h>
int BubbleUp(int **array,int length);
int main()
{
int a[2][3]={3,4,7,8,2,1};
int *ptr=a[0];
int i;
int **p=&ptr;
BubbleUp(ptr,6);
for(i=0;i<6;i++)
printf("%d\t",ptr[i]);
getchar();
return 0;

}
int BubbleUp(int **array,int length)
{
int i,j, temp;
for(i=0;i<length;i++)
for(j=0;j<length-i-1;j++)
if(array[j]>array[j+1])
{
temp=array[j+1];
array[j+1]=array[j];
array[j]=temp;
}

return 0;

TOP

什么是C 语言?

TOP

 41 12345
发新话题