Explain modulus operator. What are the restrictions of a modulus operator?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is array in c with example?

0 Answers  


How to establish connection with oracle database software from c language?

0 Answers  


Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1

0 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


Explain how can I right-justify a string?

0 Answers  






Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.

0 Answers  


why the execution starts from main function

9 Answers  


swap 2 numbers without using third variable?

0 Answers   IBS,


write a program that accepts 3 numbers from the user. dispaly the values in a descending order.

3 Answers  


What is the use of sizeof?

0 Answers  


Difference between macros and inline functions? Can a function be forced as inline?

0 Answers   HAL, Honeywell, Zomato,


Which of the following sorts is quickest when sorting the following set: 1 2 3 5 4 1) Quick Sort 2) Bubble Sort 3) Merge Sort

7 Answers  


Categories