{"id":2898,"date":"2022-03-19T00:01:39","date_gmt":"2022-03-18T18:31:39","guid":{"rendered":"http:\/\/techlog360.com\/?p=2898"},"modified":"2022-03-19T00:01:44","modified_gmt":"2022-03-18T18:31:44","slug":"c-programming-examples","status":"publish","type":"post","link":"https:\/\/techlog360.com\/c-programming-examples\/","title":{"rendered":"C Programming Examples Every Beginner Must Know"},"content":{"rendered":"<p>C Programming is one of the widely used programming languages of all time. It was developed by&nbsp;<a href=\"https:\/\/en.wikipedia.org\/wiki\/Dennis_Ritchie\" target=\"_blank\" rel=\"nofollow noopener noreferrer\" data-wpel-link=\"external\">Dennis Ritchie<\/a> between 1969 and 1973 at Bell Labs, and used to re-implement the<a href=\"http:\/\/techlog360.com\/2016\/05\/unix-vs-linux\/\" data-wpel-link=\"internal\" target=\"_self\" rel=\"follow\"> Unix operating system<\/a>.<\/p>\n<p>C programming language is almost used in every field like developing operating systems, web development, software development. Speed, stability, and near-universal availability are some&nbsp;reasons for choosing C over interpreted languages.&nbsp;C has directly or indirectly influenced many later languages such as C#, D, Go, Java, JavaScript, Limbo, LPC, Perl, PHP, Python, and Unix&#8217;s C shell.<\/p>\n<p>In this article, we are going to share some C programming examples that every C beginner must know. These are basic C programs, that is going to <a href=\"http:\/\/techlog360.com\/learn-how-to-code-for-free\/\" data-wpel-link=\"internal\" target=\"_self\" rel=\"follow\">help newbies<\/a> who just stepped in C programming world. So try them out :<\/p>\n<h2><span style=\"text-decoration: underline;\"><strong>1. C Programming &#8211;&nbsp;Hello World<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true\" title=\"Hello World\">#include&lt;stdio.h&gt;\nint main()\n{\nprintf(\"Hello world\");\nreturn 0;\n}\n<\/pre>\n<h3><strong><span style=\"text-decoration: underline;\">Output<\/span><\/strong><\/h3>\n<pre class=\"lang:c decode:true\" title=\"Hello World Output\">Hello world\n<\/pre>\n<p>Check out <a href=\"http:\/\/techlog360.com\/write-first-program-hello-world\/\" data-wpel-link=\"internal\" target=\"_self\" rel=\"follow\">how to write &#8220;Hello, World !&#8221; program<\/a> in different programming languages.<\/p>\n<h2><span style=\"text-decoration: underline;\"><strong>2. C Programming &#8211;&nbsp;Performing Arithmetic Operations<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true\" title=\"Arithmetic Operations\">#include&lt;stdio.h&gt;\nint main()\n{\nint a,b;\nprintf(\"Enter two numbers:\");\nscanf(\"%d%d\",&amp;a,&amp;b);\nprintf(\"Sum=%d difference=%d product=%d quotient=%d\",a+b,a-b,a*b,a\/b);\nreturn 0;\n}<\/pre>\n<h3><strong><span style=\"text-decoration: underline;\">Output<\/span><\/strong><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Arithmetic Operations Output\">Enter two numbers: 6 3\nSum=9 difference=3 product=18 quotient=2<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>3. C Programming &#8211; Find Area Of Circle<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true\" title=\"Find Area Of Circle\">#include&lt;stdio.h&gt;\nint main() \n{\nfloat radius, area;\nprintf(\"\\nEnter the radius of Circle : \");\nscanf(\"%d\", &amp;radius);\narea = 3.14 * radius * radius;\nprintf(\"\\nArea of Circle : %f\", area);\nreturn 0;\n}<\/pre>\n<h3><strong><span style=\"text-decoration: underline;\">Output<\/span><\/strong><\/h3>\n<pre class=\"lang:c decode:true\" title=\"Find Area Of Circle Output\">Enter the radius of Circle : 2.0\nArea of Circle : 6.14<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>4. C Programming &#8211;&nbsp;Find Greatest In 3 Numbers<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true\" title=\"Find Greatest In 3 Numbers\">#include&lt;stdio.h&gt;\nint main() \n{\nint a, b, c;\nprintf(\"\\nEnter value of a, b &amp; c : \");\nscanf(\"%d %d %d\", &amp;a, &amp;b, &amp;c);\nif ((a &gt; b) &amp;&amp; (a &gt; c))\nprintf(\"\\na is greatest\");\nif ((b &gt; c) &amp;&amp; (b &gt; a))\nprintf(\"\\nb is greatest\");\nif ((c &gt; a) &amp;&amp; (c &gt; b))\nprintf(\"\\nc is greatest\");\nreturn 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true\" title=\"Find Greatest In 3 Numbers Output\">Enter value for a,b &amp; c : 15 17 21\nc is greatest<\/pre>\n<p><strong>Also Read :&nbsp;<a href=\"http:\/\/techlog360.com\/2015\/10\/top-10-cloud-programming-languages\/\" data-wpel-link=\"internal\" target=\"_self\" rel=\"follow\">Top 10 Cloud Programming Languages<\/a><\/strong><\/p>\n<h2><span style=\"text-decoration: underline;\"><strong>5. C Programming &#8211;&nbsp;Find Even Or Odd<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true\" title=\"Find Even Or Odd\">#include&lt;stdio.h&gt;\nint main()\n{\nint n;\nprintf(\"Enter a number:\");\nscanf(\"%d\",&amp;n);\nif(n%2==0)\n{\nprintf(\"Number is even\");\n}\nelse\n{\nprintf(\"Number is odd\");\n}\nreturn 0;\n}<\/pre>\n<h3><strong><span style=\"text-decoration: underline;\">Output<\/span><\/strong><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Find Even Or Odd Output\">Enter a number: 4\nNumber is even<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>6. C Programming &#8211;&nbsp;Display Factors Of A Number<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Display Factors Of A Number\">#include &lt;stdio.h&gt;\nint main()\n{\nint n,i;\nprintf(\"Enter a positive integer: \");\nscanf(\"%d\",&amp;n);\nprintf(\"Factors of %d are: \", n);\nfor(i=1;i&lt;=n;++i)\n{\nif(n%i==0)\nprintf(\"%d \",i);\n}\n  return 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Display Factors Of A Number Output\">Enter a positive integer: 60\nFactors of 60 are: 1 2 3 4 5 6 12 15 20 30 60<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>7. C Programming &#8211;&nbsp;Check Prime Number<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Check Prime Number\">#include &lt;stdio.h&gt;\nint main()\n{\nint n, i, flag = 0;\nprintf(\"Enter a positive integer: \");\nscanf(\"%d\",&amp;n);\nfor(i=2; i&lt;=n\/2; ++i)\n{\n\/\/ condition for nonprime number\nif(n%i==0)\n{\nflag=1;\nbreak;\n}\n}\nif (flag==0)\nprintf(\"%d is a prime number.\",n);\nelse\nprintf(\"%d is not a prime number.\",n);\nreturn 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Check Prime Number Output\">Enter a positive integer: 29\n29 is a prime number.<\/pre>\n<p><strong>Also Read :&nbsp;<a href=\"http:\/\/techlog360.com\/2015\/10\/what-is-programming-and-what-do-programmers-do\/\" data-wpel-link=\"internal\" target=\"_self\" rel=\"follow\">What Is Programming And What Do Programmers Do?<\/a><\/strong><\/p>\n<h2><span style=\"text-decoration: underline;\"><strong>8. C Programming &#8211;&nbsp;Check Leap Year<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Check Leap Year\">#include&lt;stdio.h&gt;\nint main()\n{\nint year;\nprintf(\"Enter a year: \");\nscanf(\"%d\",&amp;year);\nif(year%4 == 0)\n{\nif( year%100 == 0)\n{\n\/\/ year is divisible by 400, hence the year is a leap year\nif ( year%400 == 0)\nprintf(\"%d is a leap year.\", year);\nelse\nprintf(\"%d is not a leap year.\", year);\n}\nelse\nprintf(\"%d is a leap year.\", year );\n}\nelse\nprintf(\"%d is not a leap year.\", year);\nreturn 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true\" title=\"Check Leap Year Output\">Enter a year: 1900\n1900 is not a leap year.<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>9. C Programming &#8211;&nbsp;Adding &#8216;n&#8217; Numbers<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Adding 'n' Numbers\">#include&lt;stdio.h&gt;\nint main()\n{\nint i,n,sum=0;\nprintf(\"Upto how many terms you want to find the sum:\");\nscanf(\"%d\",&amp;n);\nfor(i=1;i&lt;=n;i++){\nsum = sum + i;\n}\nprintf(\"Sum is %d\",sum);\nreturn 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Adding 'n' Numbers Output\">Upto how many terms you want to find the sum: 10\nSum is 55<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>10. C Programming &#8211;&nbsp;Factorial Of A Number<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Factorial Of A Number\">#include &lt;stdio.h&gt;\nint main()\n{\nint n, i;\nunsigned long long factorial = 1;\nprintf(\"Enter an integer: \");\nscanf(\"%d\",&amp;n);\n\/\/ show error if the user enters a negative integer\nif (n &lt; 0)\nprintf(\"Error! Factorial of a negative number doesn't exist.\");\nelse\n{\nfor(i=1; i&lt;=n; ++i)\n{\nfactorial *= i;              \/\/ factorial = factorial*i;\n}\nprintf(\"Factorial of %d = %llu\", n, factorial);\n}\nreturn 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Factorial Of A Number Output\">Enter an integer: 10\nFactorial of 10 = 3628800<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>11. C Programming &#8211; Generate&nbsp;Multiplication Table<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Generate Multiplication Table\">#include &lt;stdio.h&gt;\nint main()\n{\nint n, i;\nprintf(\"Enter an integer: \");\nscanf(\"%d\",&amp;n);\nfor(i=1; i&lt;=10; ++i)\n{\nprintf(\"%d * %d = %d \\n\", n, i, n*i);\n}\nreturn 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Generate Multiplication Table Output\">Enter an integer: 9\n9 * 1 = 9\n9 * 2 = 18\n9 * 3 = 27\n9 * 4 = 36\n9 * 5 = 45\n9 * 6 = 54\n9 * 7 = 63\n9 * 8 = 72\n9 * 9 = 81\n9 * 10 = 90<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>12. C Programming &#8211;&nbsp;Fibonacci Series<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Fibonacci Series\">#include &lt;stdio.h&gt;\nint main()\n{\n    int i, n, t1 = 0, t2 = 1, nextTerm = 0;\n\n    printf(\"Enter the number of terms: \");\n    scanf(\"%d\",&amp;n);\n\n    \/\/ displays the first two terms which is always 0 and 1\n    printf(\"Fibonacci Series: %d, %d, \", t1, t2);\n\n    \/\/ i = 3 because the first two terms are already dislpayed\n    for (i=3; i &lt;= n; ++i)\n    {\n        nextTerm = t1 + t2;\n        t1 = t2;\n        t2 = nextTerm;\n        printf(\"%d, \",nextTerm);\n    }\n    return 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Fibonacci Series Output\">Enter the number of terms: 10\nFibonacci Series: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34,<\/pre>\n<p><strong>Also Read :&nbsp;<a href=\"http:\/\/techlog360.com\/2015\/10\/top-10-programming-language-that-will-help-you-to-get-dream-job\/\" data-wpel-link=\"internal\" target=\"_self\" rel=\"follow\">Top 10 Programming Language That Will Help You to Get Dream Job<\/a><\/strong><\/p>\n<h2><span style=\"text-decoration: underline;\"><strong>13. C Programming &#8211;&nbsp;Number Is Positive Or Negative<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Number Is Positive Or Negative\">#include &lt;stdio.h&gt;\nint main()\n{\n    double number;\n\n    printf(\"Enter a number: \");\n    scanf(\"%lf\", &amp;number);\n\n    if (number &lt;= 0.0)\n    {\n        if (number == 0.0)\n            printf(\"You entered 0.\");\n        else\n            printf(\"You entered a negative number.\");\n    }\n    else\n        printf(\"You entered a positive number.\");\n    return 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Number Is Positive Or Negative Output\">Enter a number: 12.3\nYou entered a positive number.<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>14. C Programming &#8211; Reverse String Without Using Library Function <\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true\" title=\"Reverse String Without Using Library Function\">#include&lt;stdio.h&gt;\n#include&lt;string.h&gt;\nint main()\n{\nchar str[100],rev[100];\nint i,len=0;\nprintf(\"Enter a string\");\ngets(str);\nfor(i=0;i&lt;=100;i++)\n{\nif(str[i]=='\\0')\n{\nbreak;\n}\nlen++;\n}\nfor(i=0;i&lt;=len-1;i++)\n{\nrev[i] = str[len-i-1];\n}\nprintf(\"reverse of the string is %s\",rev);\nreturn 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true\" title=\"Reverse String Without Using Library Function Output\">Enter a string Johnson\nreverse of the string is nosnhoJ<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>15. C Programming &#8211;&nbsp;Display English Alphabets<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Display English Alphabets\">#include &lt;stdio.h&gt;\nint main()\n{\n    char c;\n\n    for(c='A'; c&lt;='Z'; ++c)\n       printf(\"%c \",c);\n    \n    return 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:default decode:true \" title=\"Display English Alphabets Output\">A B C D E F G H I J K L M N O P Q R S T U V W X Y Z<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>16. C Programming &#8211;&nbsp;Palindrome<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Palindrome\">#include &lt;stdio.h&gt;\nint main()\n{\n    int n, reversedInteger = 0, remainder, originalInteger;\n\n    printf(\"Enter an integer: \");\n    scanf(\"%d\", &amp;n);\n\n    originalInteger = n;\n\n    \/\/ reversed integer is stored in variable \n    while( n!=0 )\n    {\n        remainder = n%10;\n        reversedInteger = reversedInteger*10 + remainder;\n        n \/= 10;\n    }\n\n    \/\/ palindrome if orignalInteger and reversedInteger is equal\n    if(originalInteger == reversedInteger)\n        printf(\"%d is a palindrome.\", originalInteger);\n    else\n        printf(\"%d is not a palindrome.\", originalInteger);\n    \n    return 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Palindrome Output\">Enter an integer: 1001\n1001 is a palindrome.<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>17. C Programming &#8211;&nbsp;Armstrong Number<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Armstrong Number\">#include &lt;stdio.h&gt;\nint main()\n{\n    int number, originalNumber, remainder, result = 0;\n\n    printf(\"Enter a three digit integer: \");\n    scanf(\"%d\", &amp;number);\n\n    originalNumber = number;\n\n    while (originalNumber != 0)\n    {\n        remainder = originalNumber%10;\n        result += remainder*remainder*remainder;\n        originalNumber \/= 10;\n    }\n\n    if(result == number)\n        printf(\"%d is an Armstrong number.\",number);\n    else\n        printf(\"%d is not an Armstrong number.\",number);\n\n    return 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Armstrong Number Output\">Enter a three digit integer: 371\n371 is an Armstrong number.<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>18. C Programming &#8211;&nbsp;Create Pyramid<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Create Pyramid\">#include&lt;stdio.h&gt;\n \nint main() {\n   int i, j;\n   int num;\n \n   printf(\"Enter the number of Digits :\");\n   scanf(\"%d\", &amp;num);\n \n   for (i = 0; i &lt;= num; i++) {\n      for (j = 0; j &lt; i; j++) {\n         printf(\"%d \", i);\n      }\n      printf(\"\\n\");\n   }\n   return 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Create Pyramid\">Enter the number of Digits : 5\n1\n2 2\n3 3 3\n4 4 4 4\n5 5 5 5 5<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>19. C Programming &#8211;&nbsp;Reverse A Number<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Reverse A Number\">#include &lt;stdio.h&gt;\nint main()\n{\n    int n, reversedNumber = 0, remainder;\n\n    printf(\"Enter an integer: \");\n    scanf(\"%d\", &amp;n);\n\n    while(n != 0)\n    {\n        remainder = n%10;\n        reversedNumber = reversedNumber*10 + remainder;\n        n \/= 10;\n    }\n\n    printf(\"Reversed Number = %d\",reversedNumber);\n\n    return 0;\n}<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Reverse A Number Output\">Enter an integer: 2345\nReversed Number = 5432<\/pre>\n<h2><span style=\"text-decoration: underline;\"><strong>20. C Programming &#8211;&nbsp;Swap Two Numbers<\/strong><\/span><\/h2>\n<pre class=\"lang:c decode:true \" title=\"Swap Two Numbers\">#include &lt;stdio.h&gt;\nint main()\n{\n      double firstNumber, secondNumber, temporaryVariable;\n\n      printf(\"Enter first number: \");\n      scanf(\"%lf\", &amp;firstNumber);\n\n      printf(\"Enter second number: \");\n      scanf(\"%lf\",&amp;secondNumber);\n\n      \/\/ Value of firstNumber is assigned to temporaryVariable\n      temporaryVariable = firstNumber;\n\n      \/\/ Value of secondNumber is assigned to firstNumber\n      firstNumber = secondNumber;\n\n      \/\/ Value of temporaryVariable (which contains the initial value of firstNumber) is assigned to secondNumber\n      secondNumber = temporaryVariable;\n\n      printf(\"\\nAfter swapping, firstNumber = %.2lf\\n\", firstNumber);\n      printf(\"After swapping, secondNumber = %.2lf\", secondNumber);\n\n      return 0;\n}\n<\/pre>\n<h3><span style=\"text-decoration: underline;\"><strong>Output<\/strong><\/span><\/h3>\n<pre class=\"lang:c decode:true \" title=\"Swap Two Numbers Output\">Enter first number: 1.20\nEnter second number: 2.45\n\nAfter swapping, firstNumber = 2.45\nAfter swapping, secondNumber = 1.20<\/pre>\n<p>These are some of the C programming examples that will help beginners in their coding journey. If you need more C programming examples please comment below and also share your doubts.<\/p>\n<p><strong>Also Read :&nbsp;<a href=\"http:\/\/techlog360.com\/2015\/12\/programming-languages-for-hackers\/\" data-wpel-link=\"internal\" target=\"_self\" rel=\"follow\">Important Programming Languages for Hackers<\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>C Programming is one of the widely used programming languages of all time. It was developed by&nbsp;Dennis Ritchie between 1969 and 1973 at Bell Labs, and used to re-implement the Unix operating system. C programming language is almost used in every field like developing operating systems, web development, software development. Speed, stability, and near-universal availability [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":2907,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"tdm_status":"","tdm_grid_status":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[227,511,45],"tags":[449,228,103,351,724],"class_list":{"0":"post-2898","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-programming","8":"category-list","9":"category-technology","10":"tag-c-programming","11":"tag-programer","12":"tag-programming","13":"tag-programming-languages","14":"tag-slider"},"jetpack_featured_media_url":"https:\/\/techlog360.com\/wp-content\/uploads\/2016\/05\/C-Programming-Examples-for-Beginner.jpg","jetpack_sharing_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/techlog360.com\/wp-json\/wp\/v2\/posts\/2898","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/techlog360.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techlog360.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techlog360.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/techlog360.com\/wp-json\/wp\/v2\/comments?post=2898"}],"version-history":[{"count":0,"href":"https:\/\/techlog360.com\/wp-json\/wp\/v2\/posts\/2898\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/techlog360.com\/wp-json\/wp\/v2\/media\/2907"}],"wp:attachment":[{"href":"https:\/\/techlog360.com\/wp-json\/wp\/v2\/media?parent=2898"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techlog360.com\/wp-json\/wp\/v2\/categories?post=2898"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techlog360.com\/wp-json\/wp\/v2\/tags?post=2898"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}