Search:

Type: Posts; User: aripata

Search: Search took 0.00 seconds.

  1. Replies
    8
    Views
    1,450

    Here is the second one: void upperCase(char...

    Here is the second one:

    void upperCase(char *t)
    {
    int i=0;
    while(t[i]!='\0')
    {
    if ( 'a'<=t[i] && t[i]<='z' )
    t[i]=t[i]-'a' +...
  2. Thread: pointers

    by aripata
    Replies
    3
    Views
    1,335

    A very simple function to print those arrays: ...

    A very simple function to print those arrays:

    #include <stdio.h>
    void copy_stuff (int [ ], int [ ]);
    void array_printer(int *, int *);
    int main (void) /* Main returns an int, not void */...
  3. Replies
    1
    Views
    1,353

    function returns int *

    I have problems with a function like this:

    /*Specification*/

    int * where (void)
    {
    int pos[2]={0,0};
    int i, j;
    for (i=0;i<12;i++)
    {
Results 1 to 3 of 3