logo

Crowdly

Browser

Add to Chrome

Questions Bank (1261108 total)

 

(42) = ………….
View this question

 

(44) = ………….
0%
0%
0%
View this question

 

(47) = ………….
0%
0%
0%
View this question
Questions 145 – 148 refer to the following letter.

 

 

(45) = ………….
View this question

 

(43) = ………….
0%
0%
0%
View this question
#include <stdio.h>

struct element {

  int valeur;

  struct element * pointeur;

};

int main (void)

{

  struct element cellule1,cellule2,cellule3;

  cellule1.pointeur=&cellule2;

  cellule2.pointeur=&cellule3;

  cellule3.pointeur=NULL;

  cellule1.valeur=8;

  cellule2.valeur=10;

  cellule3.valeur=12;

  printf("%d",cellule1.pointeur->pointeur->valeur);

  return(0);

}

Que va afficher ce programme ?

View this question
#include <stdio.h>

struct element {

  int valeur;

  struct element * pointeur;

};

int main (void)

{

  struct element cellule1,cellule2,cellule3;

  cellule1.pointeur=&cellule2;

  cellule2.pointeur=&cellule1;

  cellule3.pointeur=&cellule2;

  cellule1.valeur=8;

  cellule2.valeur=10;

  cellule3.valeur=12;

  printf("%d",cellule1.pointeur->pointeur->valeur);

  return(0);

}

Que va afficher ce programme ?

View this question

 

(43) = ………….
View this question

 

(46) = ………….
0%
0%
0%
View this question
PART 6

 

 

Directions: Read the texts that follow. A word or phrase is missing in some of the sentences. Four answer choices are given below each of the sentences. Select the best answer to complete the text. Then mark the letter (A), (B), (C), or (D) on your answer sheet.

 

 

Questions 41 – 44 refer to the following announcement.

 

 

 

 

 

(41) = ………….
0%
0%
0%
View this question