logo

Crowdly

Browser

Add to Chrome

MEA3 : Informatique

Looking for MEA3 : Informatique test answers and solutions? Browse our comprehensive collection of verified answers for MEA3 : Informatique at moodle.umontpellier.fr.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

void inc(int *n)

{

*n++;

}

int main()

{

int

i;

i =

0

;

inc(&i);

printf("%d"

, i);

}

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

void inc(int *n)

{

(*n)++;

}

int main()

{

int

i;

i =

0

;

inc(&i);

printf("%d"

, i);

}

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

void inc(int *n)

{

n++;

}

int main()

{

int

i;

i =

0

;

inc(&i);

printf("%d"

, i);

}

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

void inc(int *n)

{

n++;

}

int main()

{

int

i;

i =

0

;

inc(i);

printf("%d"

, i);

}

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

char i[5] = {7,5,3,5,7

};

char

*pi;

pi = i;

printf("%d", *(pi+2

));

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

char i[5] = {7,3,9,5,8

};

char

*pi;

pi = i;

printf("%d", (*pi+2

));

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

char

i, j, *pa, *pb;

i =

5

;

j =

6

;

pa = &i;

pb = &j;

*pb = *pa;

printf("%d"

, j);

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

char

i, j, *pa, *pb;

i =

8

;

j =

2

;

pa = &i;

pb = pa;

*pb = *pa;

printf("%d"

, j);

View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

char

i, *pi;

i =

5

;

printf("%d"

, *pi);

0%
0%
View this question

var head = document.getElementsByTagName('head')[0];

var link = document.createElement('link');

link.rel = 'stylesheet';

link.type = 'text/css';

link.href = 'https://cdn.jsdelivr.net/highlight.js/9.1.0/styles/github.min.css';

link.media = 'all';

head.appendChild(link);

hljs.initHighlightingOnLoad();

What is the console output produced by the code below ?

char

i, *pi;

i =

8

;

pi = &i;

printf("%d"

, *pi);

View this question

Want instant access to all verified answers on moodle.umontpellier.fr?

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

Browser

Add to Chrome