{"id":3244,"date":"2018-01-30T10:46:20","date_gmt":"2018-01-30T05:16:20","guid":{"rendered":"https:\/\/www.csestack.org\/?p=3244"},"modified":"2024-04-06T08:56:13","modified_gmt":"2024-04-06T03:26:13","slug":"c-program-implement-atoi-function-convert-string-int","status":"publish","type":"post","link":"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/","title":{"rendered":"[2 Methods] C Program to Implement atoi() Function | Convert String to Int"},"content":{"rendered":"\n<p>The string is nothing but a group of characters.<\/p>\n\n\n\n<p>String Example: <code>\"abcd\"<\/code><\/p>\n\n\n\n<p>These characters can also be the numbers.<\/p>\n\n\n\n<p>String Example (consist of numebrs): <code>\"1234\"<\/code><\/p>\n\n\n\n<p>If you add the double quotation to the number, it becomes the string. Even if it contains the number values, you can not perform any mathematical operation. The compiler considers it as a pure string, not a number.<\/p>\n\n\n\n<p>Many times in your project you need to convert this string to a number so that you can perform mathematical calculations.<\/p>\n\n\n\n<p>You can convert the string to an integer manually or you can also use the inbuilt function <code>atoi()<\/code>. Before\u00a0going to the inbuilt function, we write our code.<\/p>\n\n\n\n<p>Or in interviews, you may be asked to write a C Program to implement <code>atoi()<\/code>&nbsp;function.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">Converting String to Int in C code<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. C Program to Implement atoi() Function:<\/h3>\n\n\n\n<p>We read each character from the string and based on the digit position on the character in the string, we will multiply by a power of ten.<\/p>\n\n\n\n<p>Let&#8217;s take an example. We want to convert the string &#8220;354&#8221; into an integer value as 354.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Read 3rd character:\n4 * 10^0 = 4\n\nRead 2nd character\n5*10^1 = 50\n\nRead 1st character\n3*10^2 = 300\n\nCalculate the sum of all numbers\n4+50+300 = 354<\/pre>\n\n\n\n<p>We read the characters from the string in reverse order. To read the last character first, you need to find out the number of characters in the string for which you can use the function <code>strlen()<\/code>.<\/p>\n\n\n\n<p><strong>Prerequisite:<\/strong><\/p>\n\n\n\n<p><a href=\"https:\/\/www.csestack.org\/difference-between-strlen-sizeof-c-cpp-code\/\">strlen() function in C<\/a> &#8211; It returns the number of characters in the given string.<\/p>\n\n\n\n<p>ASCII value of the integer character. You can refer to the ASCII value in the table below.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-stripes\"><table><tbody><tr><td>Character<\/td><td>ASCII Value<\/td><\/tr><tr><td>0<\/td><td>48<\/td><\/tr><tr><td>1<\/td><td>49<\/td><\/tr><tr><td>2<\/td><td>50<\/td><\/tr><tr><td>3<\/td><td>51<\/td><\/tr><tr><td>4<\/td><td>52<\/td><\/tr><tr><td>5<\/td><td>53<\/td><\/tr><tr><td>6<\/td><td>54<\/td><\/tr><tr><td>7<\/td><td>55<\/td><\/tr><tr><td>8<\/td><td>56<\/td><\/tr><tr><td>9<\/td><td>57<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Program to write to your own\u00a0<code>atoi()<\/code>\u00a0function:<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;clike&quot;,&quot;mime&quot;:&quot;text\/x-csrc&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:false,&quot;fileName&quot;:&quot;C&quot;,&quot;language&quot;:&quot;C&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;c&quot;}\">#include &lt;stdio.h&gt;\n#include &lt;string.h&gt;\n#include &lt;stdlib.h&gt;\n \nint main()\n{\n    char strNum[100] = {0};\n    int nVal = 0, i, j, len;\n    printf(&quot;Enter a number string: &quot;);\n    scanf(&quot;%s&quot;,&amp;strNum);\n    printf(&quot;\\nYour string is %s&quot;, strNum);\n  \n    len = strlen(strNum);\n    int nDecCount = 1;\n  \n    for(int i=len-1; i&gt;=0; i--){\n        nVal = nVal + nDecCount * ( strNum[i] - '0' );\n        nDecCount *=10;\n    }\n    printf(&quot;\\nYour integer value is %d&quot;, nVal);\n    return 0;\n}<\/pre><\/div>\n\n\n\n<p>Output of the Program:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Enter a number string: 1453\nYour string is 1453.\nYour integer value is 1453<\/pre>\n\n\n\n<p>You can perform any mathematical operation on this result integer value.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Convert String to Int Using Built-in&nbsp;Function atoi()<\/h3>\n\n\n\n<p>If you don\u2019t\u00a0want to do all cumbersome operations on the string, you can simply use in build function\u00a0<code>atoi()<\/code>\u00a0to convert the string into an integer value.<\/p>\n\n\n\n<p><strong>Syntax of atoi():<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">int atoi(const char *str)<\/pre>\n\n\n\n<p>It takes the string as an input value and gives the corresponding integer value as an output.<\/p>\n\n\n\n<p>The function<code>atoi()<\/code>\u00a0is available in\u00a0<code>stdlib.h<\/code>\u00a0header file. So, you need to include it in your program.<\/p>\n\n\n\n<p><strong>Program using atoi():<\/strong><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;clike&quot;,&quot;mime&quot;:&quot;text\/x-csrc&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:false,&quot;fileName&quot;:&quot;C&quot;,&quot;language&quot;:&quot;C&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;c&quot;}\">#include &lt;stdio.h&gt;\n#include &lt;stdlib.h&gt;\n \nint main()\n{\n    char strNum[100] = {0};\n    int nVal = 0;\n    printf(&quot;Enter a number: &quot;);\n    scanf(&quot;%s&quot;,&amp;strNum);\n  \n    nVal = atoi(strNum);\n    printf(&quot;%d&quot;, nVal);\n    return 0;\n}<\/pre><\/div>\n\n\n\n<p>If you are working on any project, you are free to use an inbuilt\u00a0function\u00a0rather than doing it manually. But many times, the interviewer asks you to implement a manual function to test your logic-building skill.<\/p>\n\n\n\n<p><strong>Other String-related C Programs you can try:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/www.csestack.org\/implement-strstr-function-in-c\/\" target=\"_blank\" rel=\"noreferrer noopener\">Code to Implement strstr\u00a0Function in C<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.csestack.org\/c-program-for-palindrome\/\" target=\"_blank\" rel=\"noreferrer noopener\">Check if the String is Palindrome or Not<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/www.csestack.org\/how-to-check-whether-two-strings-are-anagram-or-not\/\" target=\"_blank\" rel=\"noreferrer noopener\">Check if Two Strings are Anagram or Not<\/a><\/li>\n<\/ul>\n\n\n\n<p>This is all about&nbsp;the C Program to Implement&nbsp;<code>atoi()<\/code>&nbsp;function. There can be multiple methods to do the same. If you have any other methods, write in the comment section.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>[Two methods] How to write C Program to Implement atoi() function to convert a string into the integer (int) value?<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[38,7],"tags":[234,35],"class_list":["post-3244","post","type-post","status-publish","format-standard","hentry","category-c-cpp","category-code","tag-atoi","tag-string"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[2 Methods] C Program to Implement atoi() Function | Convert String to Int<\/title>\n<meta name=\"description\" content=\"How to write C Program to Implement atoi() function to convert a string into the integer (int) value?\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[2 Methods] C Program to Implement atoi() Function | Convert String to Int\" \/>\n<meta property=\"og:description\" content=\"How to write C Program to Implement atoi() function to convert a string into the integer (int) value?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/\" \/>\n<meta property=\"og:site_name\" content=\"CSEstack\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/aniruddha.ca\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/aniruddha.ca\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-30T05:16:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-06T03:26:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.csestack.org\/wp-content\/uploads\/2024\/01\/csestack-blog.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Aniruddha Chaudhari\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ani_chaudhari\" \/>\n<meta name=\"twitter:site\" content=\"@ani_chaudhari\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aniruddha Chaudhari\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/c-program-implement-atoi-function-convert-string-int\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/c-program-implement-atoi-function-convert-string-int\\\/\"},\"author\":{\"name\":\"Aniruddha Chaudhari\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#\\\/schema\\\/person\\\/634ef1a9c4f38b0d340c6d45fa771218\"},\"headline\":\"[2 Methods] C Program to Implement atoi() Function | Convert String to Int\",\"datePublished\":\"2018-01-30T05:16:20+00:00\",\"dateModified\":\"2024-04-06T03:26:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/c-program-implement-atoi-function-convert-string-int\\\/\"},\"wordCount\":461,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#\\\/schema\\\/person\\\/634ef1a9c4f38b0d340c6d45fa771218\"},\"keywords\":[\"atoi\",\"string\"],\"articleSection\":[\"C \\\/ C++\",\"Code\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.csestack.org\\\/c-program-implement-atoi-function-convert-string-int\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/c-program-implement-atoi-function-convert-string-int\\\/\",\"url\":\"https:\\\/\\\/www.csestack.org\\\/c-program-implement-atoi-function-convert-string-int\\\/\",\"name\":\"[2 Methods] C Program to Implement atoi() Function | Convert String to Int\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#website\"},\"datePublished\":\"2018-01-30T05:16:20+00:00\",\"dateModified\":\"2024-04-06T03:26:13+00:00\",\"description\":\"How to write C Program to Implement atoi() function to convert a string into the integer (int) value?\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/c-program-implement-atoi-function-convert-string-int\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.csestack.org\\\/c-program-implement-atoi-function-convert-string-int\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/c-program-implement-atoi-function-convert-string-int\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.csestack.org\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[2 Methods] C Program to Implement atoi() Function | Convert String to Int\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#website\",\"url\":\"https:\\\/\\\/www.csestack.org\\\/\",\"name\":\"CSEstack\",\"description\":\"Computer Science &amp; Programming Portal\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#\\\/schema\\\/person\\\/634ef1a9c4f38b0d340c6d45fa771218\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.csestack.org\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.csestack.org\\\/#\\\/schema\\\/person\\\/634ef1a9c4f38b0d340c6d45fa771218\",\"name\":\"Aniruddha Chaudhari\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.csestack.org\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Aniruddha-Chaudhari.jpg\",\"url\":\"https:\\\/\\\/www.csestack.org\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Aniruddha-Chaudhari.jpg\",\"contentUrl\":\"https:\\\/\\\/www.csestack.org\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Aniruddha-Chaudhari.jpg\",\"width\":634,\"height\":634,\"caption\":\"Aniruddha Chaudhari\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.csestack.org\\\/wp-content\\\/uploads\\\/2019\\\/03\\\/Aniruddha-Chaudhari.jpg\"},\"description\":\"I am a Python enthusiast who loves Linux and Vim. I hold a Master of Computer Science degree from NIT Trichy and have 10 years of experience in the IT industry, focusing on the Software Development Lifecycle from Requirements Gathering, Design, Development to Deployment. I have worked at IBM, Ericsson, and NetApp, and I share my knowledge on CSEstack.org.\",\"sameAs\":[\"https:\\\/\\\/www.csestack.org\",\"https:\\\/\\\/www.facebook.com\\\/aniruddha.ca\",\"pythonwithani\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/aniruddha28\\\/\",\"https:\\\/\\\/x.com\\\/ani_chaudhari\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCw0a__B0eJsvCujkSIfLTAA\"],\"url\":\"https:\\\/\\\/www.csestack.org\\\/author\\\/anicse\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[2 Methods] C Program to Implement atoi() Function | Convert String to Int","description":"How to write C Program to Implement atoi() function to convert a string into the integer (int) value?","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/","og_locale":"en_US","og_type":"article","og_title":"[2 Methods] C Program to Implement atoi() Function | Convert String to Int","og_description":"How to write C Program to Implement atoi() function to convert a string into the integer (int) value?","og_url":"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/","og_site_name":"CSEstack","article_publisher":"https:\/\/www.facebook.com\/aniruddha.ca","article_author":"https:\/\/www.facebook.com\/aniruddha.ca","article_published_time":"2018-01-30T05:16:20+00:00","article_modified_time":"2024-04-06T03:26:13+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.csestack.org\/wp-content\/uploads\/2024\/01\/csestack-blog.jpg","type":"image\/jpeg"}],"author":"Aniruddha Chaudhari","twitter_card":"summary_large_image","twitter_creator":"@ani_chaudhari","twitter_site":"@ani_chaudhari","twitter_misc":{"Written by":"Aniruddha Chaudhari","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/#article","isPartOf":{"@id":"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/"},"author":{"name":"Aniruddha Chaudhari","@id":"https:\/\/www.csestack.org\/#\/schema\/person\/634ef1a9c4f38b0d340c6d45fa771218"},"headline":"[2 Methods] C Program to Implement atoi() Function | Convert String to Int","datePublished":"2018-01-30T05:16:20+00:00","dateModified":"2024-04-06T03:26:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/"},"wordCount":461,"commentCount":0,"publisher":{"@id":"https:\/\/www.csestack.org\/#\/schema\/person\/634ef1a9c4f38b0d340c6d45fa771218"},"keywords":["atoi","string"],"articleSection":["C \/ C++","Code"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/","url":"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/","name":"[2 Methods] C Program to Implement atoi() Function | Convert String to Int","isPartOf":{"@id":"https:\/\/www.csestack.org\/#website"},"datePublished":"2018-01-30T05:16:20+00:00","dateModified":"2024-04-06T03:26:13+00:00","description":"How to write C Program to Implement atoi() function to convert a string into the integer (int) value?","breadcrumb":{"@id":"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.csestack.org\/c-program-implement-atoi-function-convert-string-int\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.csestack.org\/"},{"@type":"ListItem","position":2,"name":"[2 Methods] C Program to Implement atoi() Function | Convert String to Int"}]},{"@type":"WebSite","@id":"https:\/\/www.csestack.org\/#website","url":"https:\/\/www.csestack.org\/","name":"CSEstack","description":"Computer Science &amp; Programming Portal","publisher":{"@id":"https:\/\/www.csestack.org\/#\/schema\/person\/634ef1a9c4f38b0d340c6d45fa771218"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.csestack.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.csestack.org\/#\/schema\/person\/634ef1a9c4f38b0d340c6d45fa771218","name":"Aniruddha Chaudhari","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.csestack.org\/wp-content\/uploads\/2019\/03\/Aniruddha-Chaudhari.jpg","url":"https:\/\/www.csestack.org\/wp-content\/uploads\/2019\/03\/Aniruddha-Chaudhari.jpg","contentUrl":"https:\/\/www.csestack.org\/wp-content\/uploads\/2019\/03\/Aniruddha-Chaudhari.jpg","width":634,"height":634,"caption":"Aniruddha Chaudhari"},"logo":{"@id":"https:\/\/www.csestack.org\/wp-content\/uploads\/2019\/03\/Aniruddha-Chaudhari.jpg"},"description":"I am a Python enthusiast who loves Linux and Vim. I hold a Master of Computer Science degree from NIT Trichy and have 10 years of experience in the IT industry, focusing on the Software Development Lifecycle from Requirements Gathering, Design, Development to Deployment. I have worked at IBM, Ericsson, and NetApp, and I share my knowledge on CSEstack.org.","sameAs":["https:\/\/www.csestack.org","https:\/\/www.facebook.com\/aniruddha.ca","pythonwithani","https:\/\/www.linkedin.com\/in\/aniruddha28\/","https:\/\/x.com\/ani_chaudhari","https:\/\/www.youtube.com\/channel\/UCw0a__B0eJsvCujkSIfLTAA"],"url":"https:\/\/www.csestack.org\/author\/anicse\/"}]}},"_links":{"self":[{"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/posts\/3244","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/comments?post=3244"}],"version-history":[{"count":11,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/posts\/3244\/revisions"}],"predecessor-version":[{"id":11272,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/posts\/3244\/revisions\/11272"}],"wp:attachment":[{"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/media?parent=3244"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/categories?post=3244"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.csestack.org\/wp-json\/wp\/v2\/tags?post=3244"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}