Explain bit masking in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is c++ programming?
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
What is the difference function call by value & function call by reference?
Are the outer parentheses in return statements really optional?
Write a program to swap two numbers without using third variable?
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
Give the Output : * * * * * * * * * *
Why doesn't the code "a[i] = i++;" work?
What does a function declared as pascal do differently?