From 4b8ff760fe9fe2af736d3fa9cf876da983fff103 Mon Sep 17 00:00:00 2001 From: Swasthik shetty <42874695+swaaz@users.noreply.github.com> Date: Tue, 23 Jul 2019 19:34:17 +0530 Subject: [PATCH 01/10] Update program.c --- program-31/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program-31/program.c b/program-31/program.c index f43964bc..c6fbf3d8 100644 --- a/program-31/program.c +++ b/program-31/program.c @@ -26,7 +26,7 @@ int main() printf("|\t%d\t|\t%s\t|\t%s\t|\t%d\t|\n",i,stud[i].n,stud[i].u,stud[i].m); } printf("Enter the details of new student\n"); - printf("Enter the name\n"); + printf("Enter the name\n"); //preferred to enter equal length of name scanf("%s",&stud2.n); printf("Enter the USN\n"); scanf("%s",&stud2.u); From 817ac0267a43ce40dcfaea6c9c057b9919c63c73 Mon Sep 17 00:00:00 2001 From: Swasthik shetty <42874695+swaaz@users.noreply.github.com> Date: Wed, 24 Jul 2019 21:25:11 +0530 Subject: [PATCH 02/10] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 49ef854c..8571e1a5 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,3 @@ # C-basicprograms -This repo contains basics programs in c programming language +## This repo contains basics programs in c programming language. +|program number|program name| From 5d7746c43f9f78f8dc257050c873252c720dfa60 Mon Sep 17 00:00:00 2001 From: Swasthik shetty <42874695+swaaz@users.noreply.github.com> Date: Wed, 24 Jul 2019 21:26:27 +0530 Subject: [PATCH 03/10] Update README.md --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 49ef854c..e3c7fc3b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,19 @@ # C-basicprograms -This repo contains basics programs in c programming language +## This repo contains basics programs in c programming language. +| Program No.| Question | +| ------- | ------ | +| Program-01 | Develop a program to solve simple computational problems using arithmetic expressions and use of each operator leading to simulation of a Commercial calculator.(No built-in math function) | +| Program-02 | Develop a program to compute the roots of a quadratic equation by accepting the coefficients. Print appropriate messages. | +| Program-03 | Develop a program to find the reverse of a positive integer and check for palindrome or not. Display appropriate messages.| +| Program-04 | An electricity board charges the following rates for the use of electricity: for the first 200 units 80 paise per unit: for the next 100 units 90 paise per unit: beyond 300 units Rs 1 per unit. All users are charged a minimum of Rs. 100 as meter charge. If the total amount is more than Rs.400, then an additional surcharge of 15% of total amount is charged. Write a program to read the name of the user, number of units consumed and print out the charges. | +| Program-05 | Introduce 1D Array manipulation and implement Binary search. | +| Program-06 | Implement using functions to check whether the given number is prime and display appropriate messages. (No built-in math function)| +| Program-07 | Develop a program to introduce 2D Array manipulation and implement Matrix multiplication and ensure the rules of multiplication are checked.| +| Program-08 |Develop a Program to compute Sin(x) using Taylor Series approximation. Compare your result with the built-in Library function. Print both the results with appropriate messages. | +| Program-09 | Write functions to implement string operations such as compare, concatenate, string length. Convince the parameter passing techniques. | +| Program-10| Develop a program to sort the given set of N numbers using Bubble sort.| +| Program-11 | Develop a program to find the square root of a given number N and execute foe all possible inputs with appropriate messages. Note: Don’t use library function sqrt(n). | +| Program-12 | Implement structures to read, write and compute average marks and the students scoring above and below the average marks for a class of N students. | +| Program-13 | Develop a program using pointers to compute the sum, mean and standard deviation of all elements stored in an array of n real numbers. | +| Program-14 | Implement recursive functions for Binary to Decimal Conversion. | + From 5ac8f265219e1cea5d0c4646e1c041cb4eee28a3 Mon Sep 17 00:00:00 2001 From: Swasthik shetty <42874695+swaaz@users.noreply.github.com> Date: Fri, 26 Jul 2019 21:57:32 +0530 Subject: [PATCH 04/10] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e3c7fc3b..8d296fef 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ ## This repo contains basics programs in c programming language. | Program No.| Question | | ------- | ------ | -| Program-01 | Develop a program to solve simple computational problems using arithmetic expressions and use of each operator leading to simulation of a Commercial calculator.(No built-in math function) | -| Program-02 | Develop a program to compute the roots of a quadratic equation by accepting the coefficients. Print appropriate messages. | -| Program-03 | Develop a program to find the reverse of a positive integer and check for palindrome or not. Display appropriate messages.| -| Program-04 | An electricity board charges the following rates for the use of electricity: for the first 200 units 80 paise per unit: for the next 100 units 90 paise per unit: beyond 300 units Rs 1 per unit. All users are charged a minimum of Rs. 100 as meter charge. If the total amount is more than Rs.400, then an additional surcharge of 15% of total amount is charged. Write a program to read the name of the user, number of units consumed and print out the charges. | -| Program-05 | Introduce 1D Array manipulation and implement Binary search. | +| Program-01 | Program to print pattern | +| Program-02 | Program to check whether the given number is prime or not | +| Program-03 | Program to find largest of three number using simple if condition| +| Program-04 | Program to find largest of three number using if-else condition | +| Program-05 | Program to find largest of three number using nested if condition | | Program-06 | Implement using functions to check whether the given number is prime and display appropriate messages. (No built-in math function)| | Program-07 | Develop a program to introduce 2D Array manipulation and implement Matrix multiplication and ensure the rules of multiplication are checked.| | Program-08 |Develop a Program to compute Sin(x) using Taylor Series approximation. Compare your result with the built-in Library function. Print both the results with appropriate messages. | From b36d8bc7cdecbf7653abe7b9820dd3761776ac18 Mon Sep 17 00:00:00 2001 From: Swasthik shetty <42874695+swaaz@users.noreply.github.com> Date: Tue, 6 Aug 2019 22:23:02 +0530 Subject: [PATCH 05/10] questions added --- README.md | 43 +++++++++++++++++++++++++++---------------- 1 file changed, 27 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 0f0a4379..98ba3380 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,34 @@ # C-basicprograms ## This repo contains basics programs in c programming language. -<<<<<< swaaz | Program No.| Question | | ------- | ------ | -| Program-01 | Program to print pattern | +| Program-01 | Program to print pattern | | Program-02 | Program to check whether the given number is prime or not | -| Program-03 | Program to find largest of three number using simple if condition| +| Program-03 | Program to find largest of three number using simple if condition | | Program-04 | Program to find largest of three number using if-else condition | | Program-05 | Program to find largest of three number using nested if condition | -| Program-06 | Implement using functions to check whether the given number is prime and display appropriate messages. (No built-in math function)| -| Program-07 | Develop a program to introduce 2D Array manipulation and implement Matrix multiplication and ensure the rules of multiplication are checked.| -| Program-08 |Develop a Program to compute Sin(x) using Taylor Series approximation. Compare your result with the built-in Library function. Print both the results with appropriate messages. | -| Program-09 | Write functions to implement string operations such as compare, concatenate, string length. Convince the parameter passing techniques. | -| Program-10| Develop a program to sort the given set of N numbers using Bubble sort.| -| Program-11 | Develop a program to find the square root of a given number N and execute foe all possible inputs with appropriate messages. Note: Don’t use library function sqrt(n). | -| Program-12 Implement structures to read, write and compute average marks and the students scoring above and below the average marks for a class of N students. | -| Program-13 | Develop a program using pointers to compute the sum, mean and standard deviation of all elements stored in an array of n real numbers. | -| Program-14 | Implement recursive functions for Binary to Decimal Conversion. | - -======= -|program number|program name| ->>>>>master +| Program-06 | Program to find largest of three number using ternary operator | +| Program-07 | Program to check whether the given year is leap or not | +| Program-08 | Program to convert number into year, months and days | +| Program-09 | Program to check two number are equal without logical operator | +| Program-10 | Program to find square and half of given number without using built-in function and arithmetic operator| +| Program-11 | Program on arithmetic operators | +| Program-12 | Program on relational operators | +| Program-13 | Program on bit-wise operator. | +| Program-14 | Program on increment and decrement operator. | +| Program-15 | Program to find sum of digits between given range which are divisible by 3 | +| Program-16 | Program to check whether the given number is neon or not | +| Program-17 | Program to check whether the given number is prefect or not | +| Program-18 | Program to check given number is Armstrong or not | +| Program-19 | Program to find power of a given number | +| Program-21 | Program to check whether the given number is prime or not | +| Program-22 | Program to find GCD and LCM of given two number | +| Program-23 | Program to find number of digits in a given number | +| Program-24 | Program to print the pattern | +| Program-25 | Program to print the pattern | +| Program-26 | Program to print the pattern | +| Program-27 | Program to print the pattern | +| Program-28 | Program to print the pattern | +| Program-29 | Program to print the pattern | +| Program-30 | Program to print the pattern | +| Program-31 | Program to print the details of students using array and to add details of new students into the existing array | From c6283c6fd677d0d2a474f7120775fa75bd68f3d4 Mon Sep 17 00:00:00 2001 From: Swasthik shetty <42874695+swaaz@users.noreply.github.com> Date: Tue, 6 Aug 2019 22:52:23 +0530 Subject: [PATCH 06/10] Update program.c --- program-20/program.c | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/program-20/program.c b/program-20/program.c index bfe8670d..ed865cda 100644 --- a/program-20/program.c +++ b/program-20/program.c @@ -1,8 +1,20 @@ -#include -void main() -{ -if(printf("hello world\n")) -{ +#include +#include -} +int main() +{ int a=7,b=2; + // printf("enter two number !\n"); + //scanf("%d%d",&a,&b); + printf("%d",a/b); + + printf("%d\n",(float)a/b); + printf("%d\n",(float)a/(float)b); + printf("%d\n",a/(float)b); + + printf("%f\n",a/b); + printf("%f\n",(float)(a/b)); + printf("%f\n",(float) a/b); + printf("%f\n",(float)a/(float)b); + printf("%f\n",a/(float)b); + return 0; } From 6b512cc739de8819e9f1fbfad1e2b1f28db22ab3 Mon Sep 17 00:00:00 2001 From: Swasthik shetty <42874695+swaaz@users.noreply.github.com> Date: Tue, 6 Aug 2019 22:53:31 +0530 Subject: [PATCH 07/10] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 98ba3380..df158a98 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ | Program-17 | Program to check whether the given number is prefect or not | | Program-18 | Program to check given number is Armstrong or not | | Program-19 | Program to find power of a given number | +| Program-20 | Program to convert datatype explicitly | | Program-21 | Program to check whether the given number is prime or not | | Program-22 | Program to find GCD and LCM of given two number | | Program-23 | Program to find number of digits in a given number | From de9e963478fa31967ee0de24dd01b06207edf3a0 Mon Sep 17 00:00:00 2001 From: swaaz Date: Fri, 9 Aug 2019 20:51:29 +0530 Subject: [PATCH 08/10] p32 added --- program-31/a.out | Bin 0 -> 16688 bytes program-31/program.c | 12 ++++++------ program-32/program.c | 29 +++++++++++++++++++++++++++++ 3 files changed, 35 insertions(+), 6 deletions(-) create mode 100755 program-31/a.out create mode 100644 program-32/program.c diff --git a/program-31/a.out b/program-31/a.out new file mode 100755 index 0000000000000000000000000000000000000000..22b5b248de5f2e901c594213c81e3558d6bd3792 GIT binary patch literal 16688 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 E09HJ=r2qf` literal 0 HcmV?d00001 diff --git a/program-31/program.c b/program-31/program.c index c6fbf3d8..43a5fffb 100644 --- a/program-31/program.c +++ b/program-31/program.c @@ -12,7 +12,7 @@ int main() scanf("%d",&n); for(i=1;i<=n;i++) { - printf("Enter the details of student-%d\n",i); + printf("Enter the details of student - %d\n",i); printf("Enter the name of the student\n"); scanf("%s",&stud[i].n); printf("Enter USN\n"); @@ -20,13 +20,13 @@ int main() printf("Enter total marks\n"); scanf("%d",&stud[i].m); } - printf("|\tSl.no\t|\tName\t|\tUSN\t\t|\tMark\t|\n"); + printf("|\tSl.no\t|\tName\t\t|\tUSN\t\t|\tMark\t|\n"); for(i=1;i<=n;i++) { - printf("|\t%d\t|\t%s\t|\t%s\t|\t%d\t|\n",i,stud[i].n,stud[i].u,stud[i].m); + printf("|\t%d\t|\t%-10s\t|\t%s\t|\t%d\t|\n",i,stud[i].n,stud[i].u,stud[i].m); } printf("Enter the details of new student\n"); - printf("Enter the name\n"); //preferred to enter equal length of name + printf("Enter the name\n"); //preferred to enter equal length of name scanf("%s",&stud2.n); printf("Enter the USN\n"); scanf("%s",&stud2.u); @@ -40,10 +40,10 @@ int main() stud[i+1]=stud[i]; } stud[p]=stud2; - printf("|\tSl.no\t|\tName\t|\tUSN\t\t |\tMark\t|\n"); + printf("|\tSl.no\t|\tName\t\t|\tUSN\t\t |\tMark\t|\n"); for(i=1;i<=n+1;i++) { - printf("|\t%d\t|\t%s\t|\t%s\t|\t%d\t|\n",i,stud[i].n,stud[i].u,stud[i].m); + printf("|\t%d\t|\t%-10s\t|\t%s\t|\t%d\t|\n",i,stud[i].n,stud[i].u,stud[i].m); } diff --git a/program-32/program.c b/program-32/program.c new file mode 100644 index 00000000..26b3f3e9 --- /dev/null +++ b/program-32/program.c @@ -0,0 +1,29 @@ +#include +struct student +{ +char n[100]; +char u[100]; +int m; +}stud[10],stud2; +int main() +{ + int n,i,p=0; + printf("Enter the number of student\n"); + scanf("%d",&n); + for(i=1;i<=n;i++) + { + printf("Enter the details of student - %d\n",i); + printf("Enter the name of the student\n"); + scanf("%s",&stud[i].n); + printf("Enter USN\n"); + scanf("%s",&stud[i].u); + printf("Enter total marks\n"); + scanf("%d",&stud[i].m); + } + printf("|\tSl.no\t|\tName\t\t|\tUSN\t\t|\tMark\t|\n"); + for(i=1;i<=n;i++) + { + printf("|\t%d\t|\t%-10s\t|\t%s\t|\t%d\t|\n",i,stud[i].n,stud[i].u,stud[i].m); + } + return 0; +} From c66554a0199a64eb86e4979ab1da32ab3b9c8eb4 Mon Sep 17 00:00:00 2001 From: Swasthik shetty <42874695+swaaz@users.noreply.github.com> Date: Fri, 9 Aug 2019 21:01:28 +0530 Subject: [PATCH 09/10] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index df158a98..ec3de6b1 100644 --- a/README.md +++ b/README.md @@ -32,4 +32,5 @@ | Program-28 | Program to print the pattern | | Program-29 | Program to print the pattern | | Program-30 | Program to print the pattern | -| Program-31 | Program to print the details of students using array and to add details of new students into the existing array | +| Program-31 | Program to take the details of student and print the details of students using array and to add details of new students into the existing array | +| Program-31 | Program to take the details of student and print the details | From 3e5c0c22d92e5ed0f21831688bbbd8517d4364a3 Mon Sep 17 00:00:00 2001 From: Swasthik shetty <42874695+swaaz@users.noreply.github.com> Date: Fri, 9 Aug 2019 21:02:08 +0530 Subject: [PATCH 10/10] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec3de6b1..c01ca966 100644 --- a/README.md +++ b/README.md @@ -33,4 +33,4 @@ | Program-29 | Program to print the pattern | | Program-30 | Program to print the pattern | | Program-31 | Program to take the details of student and print the details of students using array and to add details of new students into the existing array | -| Program-31 | Program to take the details of student and print the details | +| Program-32 | Program to take the details of student and print the details |