How do I swap bytes?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of 'auto' keyword in c programming?
why return type of main is not necessary in linux
What is #pragma statements?
is compiler do read the data line by line or not. ??
6 Answers LG Soft, Satyam, Tech Mahindra,
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Can the sizeof operator be used to tell the size of an array passed to a function?
What are different types of pointers?
Is a house a shell structure?
Why does everyone say not to use gets?
write an interactive program to generate the divisors of a given integer.
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
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?