License, disclaimer of liability, and limited warranty



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

OUTPUT (after running):
Enter the value of x and n: 45 6
Sin(45.00) = 0.707037
Enter the value of x and n: 90 8
Sin(90.00) = 1.000000
Q3.
Give the output of the following C program:
    #include
    #include
    main( )
     {
       int i, j;
       for (i = 1; i<=5; i++)
        {
          printf (“\n i= %d \n”, i);
          for (j=10; j<=20; j = j+3)
           printf(“\t J= “);
          i++;
        }
     }
Ans. 3:
 The output is as follows:
 
I = 1
 
 
 
 
 
 
 
J=
10
13
16
19
I = 2
 
 
 
 
 
 
 
J=
10
13
16
19
I = 3
 
 
 
 
 
 
 
J=
10
13
16
19


I = 4
 
 
 
 
 
 
 
J=
10
13
16
19
I = 5
 
 
 
 
 
 
 
J=
10
13
16
19
Q4.
Write a C program to display the following pyramid:
 
a
 
ab
 
abc
 
abcd
abcde
Ans. 4:
 The program is as follows:
    #include
    main( )
     {
       int i, blanks = 20;
       char ch1, ch2;
       for (ch1 = ‘a’; ch1 <= ‘e’; ch1++)
        {
          printf(“\n”);
          for (i=1; i<=blanks; i++)
          printf(“ “);
          for (ch2 = ‘a’; ch2 <= ch1; ch2++)
             printf(“%c”, ch2);
          blanks - - ;
        }
     }
Q5.
Write a C program to display all prime numbers from 1 to 100.
Ans. 5:
 The program is as follows:
    #include
    main( )
     {
       int n, flag, i
       for (n=1; n <=100; n++)
       {
       i = 2;
       flag = 0;
       while (i <= n/2)
        {
          if (n % i = = 0)
           {
             flag = 1;


             break;
           }
          i++;
       }
       if (flag = =0)
          printf(“%d” \t”, n);
     }
    }
OUTPUT (after running):
1
2
3
5
7
11
13
17
19
23
29
31
37
41
43
47
53
59
61
67
71
73
79
83
89
97
Q6.
What points are to be kept in mind while using switch statements?
Ans. 6:
 The following points must be kept in mind:
1.  You can use 
case
 labels in random order.
2.  Case values cannot be expressions.
3.  Case labels cannot be repeated within a switch statement.
4.  You can mix integer and character constants in different cases of a single switch statement.
Q7.
When is a while loop preferred over a for loop?
Ans. 7:
 A while loop is preferred over a for loop when it is not known in advance how many
times the loop is going to execute.
Q8.
What is meant by lifetime and scope regarding variables?
Ans. 8:
 The lifetime of a variable is the length of time it retains a particular value. The scope of
a variable refers to those parts of a program that will be able to recognize it.
Q9.
Using the ternary operator of C, write a program to find the largest of two numbers.
Ans. 9:
 The program is as follows:
    #include
    main( )
     {
       int num1, num2, large;
       printf(“Enter any two numbers:”);
       scanf(“%d %d”, &num1, &num2);
       printf(“%5d %5d\n”, num1, num2);
       large = num1 > num2 ? num1 : num2;
       printf(“\n Larger of the two is %5d \n”, large);
     }

Download 2,08 Mb.

Do'stlaringiz bilan baham:
1   ...   168   169   170   171   172   173   174   175   ...   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