![]() |
| Home | Tech FAQ | Interview Questions | Placement Papers | Tech Articles | Learn | Freelance Projects | Online Testing | Geeks Talk | Job Postings | Knowledge Base | Site Search | Add/Ask Question |
![]() Related Questions Latest Answer : is this auestion refers to how many bits are set to 1 in a value.if that is the question then simply convert that value into bit code....then you can get the answer easily..... ... Latest Answer : use ulimit -n 100. that is the above line increase the number of open file descriptor to 100 w.r.t that shellbalaji ... Latest Answer : It is possible to declare and define body functions in header files, there is no restrictions to create your all code inside a header file.SourceCode.c:#include "SourceCode.h"SourceCode.h:#include #include int Calc(int ... Latest Answer : Use fread() and fwrite() ... Latest Answer : Hexadecimal-D93C. ... Latest Answer : Bitwise and - & is the correct answer. n=n & 0177 ... Latest Answer : The bitwise XOR ^ sets a one in each bit position where its operands have different bits and zero where they are same. ...
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned Which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1? Latest Answer : #includeusing namespace std;/* factorial function --recursive*/int fact(int n){ if (n == 0) return 1; n=n*fact(n-1); return n;}int main() { int n=5; cout Latest Answer : ptr=realloc(ptr,newsize);This function allocates a new memory space of size newsize to the pointer variable ptr and returns a pointer to the first byte of the new memory block.The new size may be smaller or larger than the size.If the function ...
Sponsored Links
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||