The function toupper will convert a string to upper case (capital letters). For example:
toupper
BEGIN { greeting = "hello" loud_greeting = toupper(greeting) print loud_greeting }
This code will output "HELLO" when run.