Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

what is sign of modulus in c language

–3 votes
asked Dec 1, 2020 by omama qaisrani (110 points)

3 Answers

+1 vote
answered Dec 2, 2020 by DJ Galia (160 points)
%

Thats my aswer
+2 votes
answered Dec 2, 2020 by Yaswanthkumar Chennareddy (180 points) 1 flag
the sign of modules in c language is %
0 votes
answered Dec 2, 2020 by Peter Minarik (86,200 points)
int a = 3;
int b = 2;
int c = a % b; // c = 1
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...