Can we initialize extern variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is a void pointer in c?
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 do you mean by enumeration constant?
What are the benefits of organizational structure?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What’s a signal? Explain what do I use signals for?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
how can i get output like this? 1 2 3 4 5 6
What is wrong in this statement?
What is an example of structure?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)