difference between c and c++?

Answer Posted / ks

ALTER PROC [dbo].[sp_PAYDETAIL]

@studentid INT,
@admitdate VARCHAR(50),
@paymode VARCHAR(50),
@amount VARCHAR(50),
@ddno VARCHAR(50),
@bankname VARCHAR(50),
@courseapply VARCHAR(50)
AS
INSERT INTO TBL_PAYMENT
(StudentId,Date,PayMode,Amount,DDNo,BankName,CourseApplied)
VALUES
(@studentid,@admitdate,@paymode,@amount,@ddno,@bankname,@cou
rseapply)
/////////////////////

ALTER PROC [dbo].[sp_SHOWRECEIPTINFO]
@studentid INT
AS
SELECT ReceiptNo,CourseApplied,Amount,Date
FROM TBL_PAYMENT
WHERE StudentId=@studentid
////////////////////////////////
ALTER PROC [dbo].[sp_SHOWRECEIPT]
@studentid INT
AS
SELECT First_Name,Last_Name FROM TBL_STUDENTDETAIL
WHERE StudentId=@studentid

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do you save a c++ program?

561


What are the main features of c++?

546


Difference between pointer to constant vs. Pointer constant

585


Write a short code using c++ to print out all odd number from 1 to 100 using a for loop

588


Why do we need c++?

599






Can a constructor return a value?

577


What is static class data?

579


Is swift faster than c++?

569


Define 'std'.

610


If dog is a friend of boy, is boy a friend of dog?

575


What kind of problems can be solved by a namespace?

594


What apps are written in c++?

607


Where the memory to the static variables is allocated?

560


What is the best way to take screenshots of a window with c++ in windows?

573


What should main() return in c and c++?

529