What is unsigned int in c?
No Answer is Posted For this Question
Be the First to Post Answer
Are the outer parentheses in return statements really optional?
Describe the difference between = and == symbols in c programming?
Is struct oop?
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 to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
What is the difference between exit() and _exit() function?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
write an algorithm and a program to count the number of elements in a circularly singly linked list
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
main() { printf(5+"Vidyarthi Computers"); }
Describe how arrays can be passed to a user defined function