answersLogoWhite

0

char mystring[] = "This is a string"; int mystringlength = strlen(mystring); /* mystringlength is now 16 */

User Avatar

Wiki User

16y ago

What else can I help you with?

Continue Learning about Music & Radio

How can you raise the pitch of the note of a certain veena string without changing the length?

To raise the pitch of a veena string without changing its length, you can increase the tension of the string. This can be done by tightening the tuning pegs, which raises the string's tension and consequently its pitch. Additionally, using a lighter gauge string can also help achieve a higher pitch while maintaining the same length.


How do you measure the velocity of frequency of tuning fork using a sonometer?

To measure the velocity of frequency of a tuning fork using a sonometer, you first strike the tuning fork to produce a sound and then place it near the sonometer wire. The sonometer consists of a vibrating string that can be adjusted in length. By adjusting the length of the string until it resonates with the frequency of the tuning fork, you can measure the length of the vibrating segment. The velocity of the wave on the string can then be calculated using the formula (v = f \times \lambda), where (f) is the frequency of the tuning fork and (\lambda) is the wavelength determined by the length of the vibrating string.


How do you determine string or cable length for your compound bow?

what is the string length of a Mathew Mission compound bow


How can you change the length of a vibration string?

Moving your finger along the string will alter the length and the pitch of the sound produced.


How do you produce sound out of string instruments?

Pluck the string with your finger or with anything (like a pick or the hammer of a piano) and it will cause the string to vibrate at a frequency which is determined by the thickness of the string and the length of the string (which is a fixed length on a piano, but is determined by where you fret (push down on with your fingertip) the string on instruments like guitars and violins. The frequency of the vibration determines the note... since sound IS vibration.

Related Questions

How do you get the length of an ANSI string using PHP?

$string ="Guess my length"; $length = strlen($string); now the $length will have the length of the string.


How do you find the length of the string using strlen?

int len = strlen("some string"); // len has value 11


Find length of the string without using loops and control structures?

length = strlen(string);


How do you find the length of string without using strlen function in MySQL?

SELECT char_length (...) FROM ...


What function returns the length of a string?

strlen


What is the length command line argument in character?

Use the function strlen(string);


How do you find the length of string without using the strlen function in PHP?

$str = "Hello"; $nameArr=str_split($str); print_r($nameArr); echo "length: ".count($nameArr);


How do you check the length of a string in PHP?

It is fairly simple to check the length of a string in PHP. All you need to do is use the function strlen(). Below is an example of how it is used. <?php $my_text = "Hello"; echo strlen($my_text); // outputs 5 ?>


Write c program to print palindrome using string without using strrev strlen strcam?

sdfdg


Write a prog to find length of string using strlen function?

void main() { char str1[30]; char str2[30]; int len1,len2; printf("Enter string1......:"); gets(str1); printf("Enter string2......:"); gets(str2); len1=strlen(str1); len2=strlen(str2); printf("%s length = %d",str1,len1); printf("%s length = %d",str2,len2); }


How do you reverse a string with array and function?

<?php $str = "1234567"; $strArr = str_split($str); //split up $str by 1 character $strlen = strlen($str) - 1; //get length of $str - 1 since the $strArr starts at 0 for($i=$strlen;$i>=0;$i--) { echo $strArr[$i]; } ?>


How do you find last char in c string?

(strlen(str) == 0) ? '\0' : str[strlen(str)-1]