What is the modulus operator?


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

Post New Answer

More C Interview Questions

Why we use stdio h in c?

0 Answers  


What is a pointer?

1 Answers   ADP, IFFCO,


What is the relation between # and include<stdio.h>

5 Answers   HCL,


What do the functions atoi(), itoa() and gcvt() do?

0 Answers   Aspire, Infogain,


What is the best organizational structure?

0 Answers  






What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


Subtract Two Number Without Using Subtraction Operator

0 Answers  


Are bit fields portable?

0 Answers   EXL,


What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none

2 Answers   Oracle,


who is the father of c

4 Answers   Infosys,


There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.

5 Answers   Yahoo,


How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?

4 Answers   NIIT,


Categories