What is difference between structure and union in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a memory leak? How to avoid it?
Explain is it better to bitshift a value than to multiply by 2?
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
Write the control statements in C language
Why do we use stdio h and conio h?
write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
Given an unsigned integer, find if the number is power of 2?
What is keyword in c?
what is difference between c and c++
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }