اكتب برنامج بلغة C لجمع أرقام باستخدام المناداة بالمرجع

  • برمجة
  • برمجة سي c

اكتب برنامج بلغة C لجمع أرقام باستخدام المناداة بالمرجع

الخرج المتوقع :

 Pointer : Add two numbers using call by reference:
-------------------------------------------------------
 Input the first number : 5
 Input the second  number : 6
 The sum of 5 and 6  is 11

الأجوبة

/*Write a program in C to add numbers using call by reference*/

#include <stdio.h>
long addTwoNumbers(long *, long *);
 
int main()
{
   long fno, sno, sum;
   
   printf("\n\n Pointer : Add two numbers using call by reference:\n"); 
   printf("-------------------------------------------------------\n");   
 
   printf(" Input the first number : ");
   scanf("%ld", &fno);
   printf(" Input the second  number : ");
   scanf("%ld", &sno);   
   sum = addTwoNumbers(&fno, &sno);
   printf(" The sum of %ld and %ld  is %ld\n\n", fno, sno, sum);
   return 0;
}
long addTwoNumbers(long *n1, long *n2) 
{
   long sum;
   sum = *n1 + *n2;
   return sum;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...