- 4 10 The Following Piece Of Code Is Used To Read A Floating Point Number And Store It In A Variable Passed As Argument 1 (85.37 KiB) Viewed 73 times
4 10. The following piece of code is used to read a floating point number and store it in a variable passed as argument.
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
4 10. The following piece of code is used to read a floating point number and store it in a variable passed as argument.
4 10. The following piece of code is used to read a floating point number and store it in a variable passed as argument. The execution of the instruction readInteger (&Value) will store the value read in Value declared in the calling function. [4] void readInteger (int *x) { float x; scanf("%d", x); return 0; } 11. The following fragment of code should compute the w(r, r, n) = 1+ir+rrº +...+rr". Locate correct the errors. [5] double S = x; for (i = 2; i <= n; i--) { term = term+r; S= S+term; i++; } [3] 12. Find the error in each of the following program segments and correct the error: (a) #define SIZE 100; (b) SIZE = 10; (c) Assume int [10] = {0}, i; for (i=0; i <= 10; i++) { b 1; } = Section C: Design and Coding [30 marks]