What math functions are available for integers? For floating point?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
How can you convert integers to binary or hexadecimal?
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
What is a struct c#?
c program to manipulate x=1!+2!+3!+...+n! using recursion
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
write a program to find out number of on bits in a number?
write a program in c language for the multiplication of two matrices using pointers?
which one is better structure or union?(other than the space occupied )