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

What is an html tag?

632


Write a program in C++ for Fibonacci series

664


Explain the use of this pointer?

636


Why ctype h is used in c++?

525


Mention the ways in which parameterized can be invoked. Give an example of each.

574






Can non-public members of another instance of the class be retrieved by the method of the same class?

610


What is low level language in simple words?

565


What is the fastest c++ compiler?

583


Can we use this pointer inside static member function?

630


What's the order in which the local objects are destructed?

842


A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

3242


What is the sequence of destruction of local objects?

556


Can we use this pointer in a class specific, operator-overloading function for new operator?

614


What is a pointer with example?

659


Define stacks. Provide an example where they are useful.

579