Using parameters helps prevent SQL Injection attacks when the database is used in conjunction with a program interface such as a desktop program or web site.
In your example, a user can directly run SQL code on your database by crafting statements in txtSalary.
For example, if they were to write 0 OR 1=1, the executed SQL would be
SELECT empSalary from employee where salary = 0 or 1=1
whereby all empSalaries would be returned.
Further, a user could perform far worse commands against your database, including deleting it If they wrote 0; Drop Table employee:
SELECT empSalary from employee where salary = 0; Drop Table employee
The table employee would then be deleted.
In your case, it looks like you're using .NET. Using parameters is as easy as:
C#
string sql = "SELECT empSalary from employee where salary = @salary";
SqlConnection connection = New SqlConnection(/* connection info */);
SqlCommand command = SqlCommand(sql, connection);
command.Parameters.AddWithValue("salary", txtSalary.Text);
VB.NET
Dim sql As String = "SELECT empSalary from employee where salary = @salary"
Dim connection As New SqlConnection(connectionInfo)
Dim command As SqlCommand(sql, connection)
With command.Parameters
.AddWithValue("salary", txtSalary.Text)
End With