ابدأ بالتواصل مع الأشخاص وتبادل معارفك المهنية

أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.

متابعة

In the context of programming, what is the difference between postfix and prefix operators? Preferably with examples.

user-image
تم إضافة السؤال من قبل Mohamed Saleh Elsayed Saleh , Senior System Administrator / Database Administrator , Habitat
تاريخ النشر: 2017/09/20

Postfix opreator =variable & operator.

Prefix opreator =operator & variable.

eg : a=42;

       b=a++;

postfix operator form is a++ i.e, b=a then a=a+1;

prefix operator form is ++a i.e, a=a+1 then b=a;

Sheeth Rahiman
من قبل Sheeth Rahiman , System Administrator , Homestyle

Postfix - Use & Operate ( Ex : a++ )

Prefix - Operate & Use ( Ex : ++a )

For Example,

Assume a=1 and

if b=a++ then b=1

if b=++a then b=2         

Vibin M Valsalan
من قبل Vibin M Valsalan , Executive , Aramex Emirates LLC

a=1;

b=a++;

c=++a;

 

value of b =1

value of c= 3

المزيد من الأسئلة المماثلة