What is the modulus operator?
No Answer is Posted For this Question
Be the First to Post Answer
Magic square
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
Do character constants represent numerical values?
Explain how do you search data in a data file using random access method?
Can we declare function inside main?
Write a c program using for loop in switch case?
How do you print only part of a string?
How can I insert or delete a line (or record) in the middle of a file?
How can I write functions that take a variable number of arguments?
Is c high or low level?
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?