Choose the invalid C statement. A)int a, b=2, c=3; B)char a[]=\"abc\", *p = a; C
ID: 3614703 • Letter: C
Question
Choose the invalid C statement. A)int a, b=2, c=3;B)char a[]="abc", *p = a;
C)a+b = 7;
D)++(*p++);
12. If we want the random number library function to produce adifferent sequence of values each time the program is run which ofthe following statements should be used? A)setenv(rand());
B)fopen(srand());
C)srand(clock());
D)srand(time(NULL));
Choose the invalid C statement. A)int a, b=2, c=3;
B)char a[]="abc", *p = a;
C)a+b = 7;
D)++(*p++);
Choose the invalid C statement. 12. If we want the random number library function to produce adifferent sequence of values each time the program is run which ofthe following statements should be used? A)setenv(rand());
B)fopen(srand());
C)srand(clock());
D)srand(time(NULL));
12. If we want the random number library function to produce adifferent sequence of values each time the program is run which ofthe following statements should be used? A)setenv(rand());
B)fopen(srand());
C)srand(clock());
D)srand(time(NULL));
If we want the random number library function to produce adifferent sequence of values each time the program is run which ofthe following statements should be used?
Explanation / Answer
Choose the invalid C statement. A) int a, b=2, c=3;B) char a[]="abc", *p = a;
C) a+b =7; only single variable allowed on the left side of=
D) ++(*p++);
Choose the invalid C statement. 12. If we want the random number library function to produce adifferent sequence of values each time the program is run which ofthe following statements should be used? A) setenv(rand());
B) fopen(srand());
C) srand(clock());
D) srand(time(NULL));
12. If we want the random number library function to produce adifferent sequence of values each time the program is run which ofthe following statements should be used? A) setenv(rand());
B) fopen(srand());
C) srand(clock());
D) srand(time(NULL));
If we want the random number library function to produce adifferent sequence of values each time the program is run which ofthe following statements should be used?