answersLogoWhite

0


Best Answer

It could be the inishals of a name like Clark Kent, or an abreveation of some kind.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does C K mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does m-c 14k mean?

What does 14 k mc mean


What does the C in C1500 and the K in K2500 mean?

The the C means it is 2 wheel drive and the K means it's 4 wheel drive


What does KC in KC-10 mean?

K - Tanker C - Transport ("C" from Cargo mover)


What does c. stand for?

In the equation E=M times C squared, the C stands for the speed of light. C can also mean 100, just as K can mean 1,000. C can also mean Centigrade


How do you spell nicker?

If you mean knicker, like trousers, k-n-i-c-k-e-r


What does f you c k mean?

Fornicating under the consent of the king


What does the k in k ration mean?

The letter K had no particular significance; it was chosen merely to have a phonetically different letter from the letters C and D.


What 5 letter word that starts with c and ends with k?

Chalk. C-L-I-C-K C-L-O-C-K C-L-U-C-K C-H-U-C-K C-H-I-C-K Croak Crack Crook Creek


Which equation shows the relationship between kelvin and Celsius temperature scales?

K to C Formula: C = K - 273.15 C to K Formula: K = C + 273.15


Which shows the formula for converting from kelvins to degrees Celsius C (95 K) plus 32 C 59 (K 32) C K 273 C K plus 273?

C = K -273


C program for optimal merge pattern?

#include<iostream.h> #include<conio.h> void main() { clrscr(); int i,k,a[10],c[10],n,l; cout<<"Enter the no. of elements\t"; cin>>n; cout<<"\nEnter the sorted elments for optimal merge pattern"; for(i=0;i<n;i++) { cout<<"\t"; cin>>a[i]; } i=0;k=0; c[k]=a[i]+a[i+1]; i=2; while(i<n) { k++; if((c[k-1]+a[i])<=(a[i]+a[i+1])) { c[k]=c[k-1]+a[i]; } else { c[k]=a[i]+a[i+1]; i=i+2; while(i<n) { k++; if((c[k-1]+a[i])<=(c[k-2]+a[i])) { c[k]=c[k-1]+a[i]; } else { c[k]=c[k-2]+a[i]; }i++; } }i++; } k++; c[k]=c[k-1]+c[k-2]; cout<<"\n\nThe optimal sum are as follows......\n\n"; for(k=0;k<n-1;k++) { cout<<c[k]<<"\t"; } l=0; for(k=0;k<n-1;k++) { l=l+c[k]; } cout<<"\n\n The external path length is ......"<<l; getch(); }


What is the relation between Celsius kelvin and Fahrenheit?

C to F: F = 1.8*C + 32C to K: K = C - 273.15 F to C: C = 5/9*(F- 32) F to K: K = 5/9*(F- 32) - 273.15 K to C: C = K + 273.15 K to F: K = 1.8*(K - 273.15) + 32