Explain is it better to bitshift a value than to multiply by 2?
No Answer is Posted For this Question
Be the First to Post Answer
What are 3 types of structures?
write a program to find lcm and hcf of two numbers??
what will happen if you free a pointer twice after allocating memory dynamically ?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
What is an example of structure?
what is void pointer?
number 2 plssssss help !!....using array.. turbo c.. create a program that will accept a number and determine if it is a happy number or an unhappy number.. example: enter a number : 7 7*7=49 then 4 and 9 4*4 and 9*9== 16 + 18 gives you 97 then 9 and 7 9*9 and 7*7 == 81 + 49 gives you 130 then 1 and 3 1*1 and 3*3 == 1 + 9 gives you 10 1*1 gives you 1 sample output: 7= 49= 16+81= 97= 81+49=130 =1+9=10 =1 "7 is a happy number" . if the last number is 2 then the number being inputed is not a happy number.
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }
What is call by value in c?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
Explain what does the function toupper() do?
What is a buffer in c?