Home > database >  Refer to two simple C language's topic
Refer to two simple C language's topic

Time:09-22

1, use the pointer implementation) for a minimum of the array elements, and output the minimum





//order table




# include




using namespace std;




Int main ()

{

Int a []={6, 4,2,8,9};

Int * p=a;











return 0;


}


2, using a pointer variable pointing to the array elements, the output is less than 70 the number of




78,67,45,89,90,65,76,80,70,63 int a [10]={};




After output a newline, printf (" % d \ n ",... );

[sample output]

67

45

65

63

CodePudding user response:

This stuff online search a blockbuster
  • Related