License, disclaimer of liability, and limited warranty



Download 2,08 Mb.
Pdf ko'rish
bet174/393
Sana05.01.2022
Hajmi2,08 Mb.
#319699
1   ...   170   171   172   173   174   175   176   177   ...   393
Bog'liq
C Programming A Self Teaching Int 1uq45XL

OUTPUT (after running):
Enter the value of x and y = 2 3
Power of 2 to 3 is = 8
Q13.
Write a C program to generate the Fibonacci series that continues till n.
Ans. 13:
 The program is as follows:
    #include
    main( )
     {
       int i, n, f1, f2, f3;
       printf(“\n \t Enter the value of n: “);
       scanf(“%d”, &n);
       if (n <= 1)
        printf(“%d”, n);
       else
        {
          f1 = 0;
          f2 = 1;
          f3 = f1 + f2;
          printf(“%d\t”, f3);
          for (i=2; i<=n; i++)
           {
             f3 = f1 + f2;
             f1 = f2;
             f2 = f3;
             printf(“%d\t”, f3);
           }
           }
         }
Please  note  here  that  in  a  for  statement,  you  can  have  more  than  one  expression  in  the
initialization  part  of  the  statement  and  more  than  one  expression  in  the  update  part.  To
separate multiple initializations and updating, we use commas to separate them. Also note that
the C language strictly allows only one test condition and no more than that in a for statement.
Q14.
Write the output of the following C code:
    #include
    main( )
     {
       int x = 4;
       x *= x + 4;
       printf(“%d”, x);
     }


Ans. 14:
 The output is as follows: 32
This is so because we have x = x * (x + 4) = 4 * ( 8 ) = 32.
Q15.
What is a variable declaration and what is a variable definition?
Ans. 15:
 extern int a is a declaration whereas int a=100 is a definition.

Download 2,08 Mb.

Do'stlaringiz bilan baham:
1   ...   170   171   172   173   174   175   176   177   ...   393




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish