What is the concatenation operator?
No Answer is Posted For this Question
Be the First to Post Answer
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
The program to allow the characters from the input received and send this function to a function check if the characters between letters a to z is a function of y joins as the characters main and output to otherwise return to the original function of the y characters
write a c program in such a way that if we enter the today date the output should be next day's date.
related proverb of "dont count your chicken before it hatches"
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
What are volatile variables?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is an lvalue in c?
FILE PROGRAMMING
How does free() know how many bytes to free?