What is storage class?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
Which is best book for data structures in c?
What is difference between && and & in c?
write a program to display the array elements in reverse order in c language
How does #define work?
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
write a program without using main function?
which is the best antivirus and how to update it
Are bit fields portable?
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
Write the syntax and purpose of a switch statement in C.