logo

Crowdly

Browser

Add to Chrome

#include <stdio.h> /* Le charactere ASCII 65 est un A majuscule, le ...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

#include <stdio.h>

/* Le charactere ASCII 65 est un A majuscule, le 66 un B, etc...*/

int main (void)

{

  int i;

  char pchar [10];

  for(i=0;i<10;i++)

  {

    pchar[i]=(i+65);

  }

  pchar[9]='\0';

  printf("%s",pchar);

  return (0);

}

Que donne l'exécution de ce programme ?

More questions like this

Want instant access to all verified answers on moodle.insa-toulouse.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome