What is the real meaning of % and int arr(3)={5,3,1}.i'm really don't understand | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is the real meaning of % and int arr(3)={5,3,1}.i'm really don't understand

16th Dec 2016, 1:08 PM
Asna Khalidah Mohd Shobri
Asna Khalidah Mohd Shobri - avatar
2 Answers
+ 13
% shows the remainder from the division. For example, 5%2=1
16th Dec 2016, 4:13 PM
Remmae
Remmae - avatar
+ 7
As Remmae said % operator gives you the remainder (% is called modulo division operator ) In C lang arr is a variable.... here this variable arr is declared as an integer array with a size of 5 (size = no. of elements) where arr[0] = 5, arr[1] = 3, arr[2] = 1 >> the number in [ ] indicates the index of a number in that arrray
16th Dec 2016, 4:59 PM
Akbar Zack Raheem
Akbar Zack Raheem - avatar