What is typedef example?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how are portions of a program disabled in demo versions?
What is an endless loop?
Is it valid to address one element beyond the end of an array?
write a program to copy a string without using a string?
c program to add and delete an element from circular queue using array
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
What happens if header file is included twice?
What is the real time usage volatile?
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
how write a addtion of two single dimensional array using of pointer in c language?
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
Hai what is the different types of versions and their differences