Const - Point Out Errors :: Discussion


7.Point out the error in the program?
A.Error: cannot convert ptr const value
B.Error: unknown pointer conversion
C.No error
D.None of above
Answer:  Option  A
Explanation:

Step 1char mybuf[] = "India"; The variable mybuff is declared as an array of characters and initialized with string "India".

Step 2char yourbuf[] = "BIX"; The variable yourbuf is declared as an array of characters and initialized with string "BIX".

Step 3char const *ptr = mybuf; Here, ptr is a constant pointer, which points at a char.

The value at which ptr it points is a constant; it will be an error to modify the pointed character; There will not be any error to modify the pointer itself.

Step 4*ptr = 'a'; Here, we are changing the value of ptr, this will result in the error "cannot modify a const object".

Tutorial Link:
Published by:Michael Daani

Comments are not available

Post your comments here:

Optional

Date to Date Current Affairs 2022

PakMCQs.net

Quick Links

GAT Subject



   Computer Science    English Mcqs    Agriculture    

Engineering



   Computer Science    Civil Engineering    

Technical



   Networking    Electronics    Database    

Past Papers



   Model Papers    FPSC Papers