Saturday, May 13, 2023

Write a C program to print all odd number between 1 to n using while loop

 //Write a C program to print all odd number between 1 to n using while loop

#include "stdio.h"

int main ()

{

int n,i;

printf ("the value of n is :\n");

scanf ("%i",&n);

i=1;

while(i<=n)

{

printf ("%i \n",i);

i=i+2;

}

return 0;

}

   output             output            output         output 

the value of n is :

100

1

3

5

7

9

11

13

15

17

19

21

23

25

27

29

31

33

35

37

39

41

43

45

47

49

51

53

55

57

59

61

63

65

67

69

71

73

75

77

79

81

83

85

87

89

91

93

95

97

99

No comments:

Post a Comment

print a multiplication table of any integer taking from user

 // print a multiplication table of any integer taking from user  #include "stdio.h" int main () { int n,mul,i; printf ("...