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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
what is sign of modulus in c language
–3
votes
asked
Dec 1, 2020
by
omama qaisrani
(
110
points)
Please
log in
or register to answer this question.
3 Answers
+1
vote
answered
Dec 2, 2020
by
DJ Galia
(
160
points)
%
Thats my aswer
Please
log in
or register to add a comment.
+2
votes
answered
Dec 2, 2020
by
Yaswanthkumar Chennareddy
(
180
points)
1
flag
the sign of modules in c language is %
Please
log in
or register to add a comment.
0
votes
answered
Dec 2, 2020
by
Peter Minarik
(
101,360
points)
int a = 3; int b = 2; int c = a % b; // c = 1
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...