the question is that what you have been doing all these
periods (one year gap)
No Answer is Posted For this Question
Be the First to Post Answer
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
What is the difference between far and near in c?
What is the use of bitwise operator?
write a program to add two numbers of any size.....(remember any size)
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Define macros.
Why main is used in c?
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.
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
How can I find out if there are characters available for reading?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail