Answers for "setting array values in c"

C
0

changing an item in an array in c

#include <stdio.h>
#define PI 3.142
int main(){
    int a[5] ={12, 21, 34, 23, 13};
    printf("Initial value of index 1: %dn", a[1]);
    a[1] = 43;
    printf("Final value of index 1: %dn", a[1]);
    
}
Posted by: Guest on April-19-2021

Code answers related to "setting array values in c"

Code answers related to "C"

Browse Popular Code Answers by Language