Convert a distance from miles to kilometers .there are 5280
feets per mile,12 inches per foot .2.54 centimeters per
inch and 100000centimeters per kilometer
No Answer is Posted For this Question
Be the First to Post Answer
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
plz let me know how to become a telecom protocol tester. thank you.
a simple c program using 'for' loop to display the output 5 4 3 2 1
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
how can you print&scan anything using just one character? :) HINT: printf,scanf similer
Write a program in c to replace any vowel in a string with z?
What are the preprocessor categories?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
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