{"id":24258,"date":"2020-10-14T10:59:28","date_gmt":"2020-10-14T17:59:28","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=24258"},"modified":"2021-01-22T17:52:06","modified_gmt":"2021-01-23T01:52:06","slug":"c-compilers","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/c-compilers\/","title":{"rendered":"C: How To Setup Your C Compiler"},"content":{"rendered":"\n<p>Let\u2019s take a look at how to get started with learning C. C, unlike JavaScript, is a low-level language that needs to be compiled in advance, prior to execution. You need to download a compiler to get started, if you would like to work with C on your machine. To do this, you need to know which platform you will be working on.<br><\/p>\n\n\n\n<p>Use the <a href=\"https:\/\/careerkarma.com\/blog\/c-hello-world\/\">Hello World in C<\/a> tutorial from Career Karma to test your install to see if your setup runs correctly.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">MacOS<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Two Options: Command Line Tools or Full XCode Install<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Command Line Tools<\/h4>\n\n\n\n<ol class=\"wp-block-list\"><li>Open Terminal<\/li><li>Run <code>xcode-select --install<\/code><ul><li>This prevents a full xcode install &#8212; which is not needed for simple C applications.<\/li><\/ul><\/li><li>Install developer command line tools when prompted.<\/li><\/ol>\n\n\n\n<h4 class=\"wp-block-heading\">Full XCode Install<\/h4>\n\n\n\n<ol class=\"wp-block-list\"><li>Open AppStore and Install XCode<\/li><li>Open Terminal<\/li><li>After install is complete, run <code>gcc<\/code><\/li><li>Install developer command line tools when prompted.<\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Windows<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Two Options: Windows Subsystem for Linux or Cygwin<\/h3>\n\n\n\n<h4 class=\"wp-block-heading\">Windows Subsystem for Linux (WSL)&nbsp;<\/h4>\n\n\n\n<p>Note: Only available for Windows 10 and higher<br><\/p>\n\n\n\n<p>The Windows Subsystem for Linux is basically a minified Linux that can run in your Windows environment without the need for a traditional virtual machine.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Go to the Microsoft Store and <a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/wsl\/install-win10\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">install WSL<\/a> \u2013 Ubuntu is a solid choice when it comes to distributions, but you can choose whichever you\u2019d like.<\/li><li>Check your Windows build number. The latest version of Ubuntu requires &gt;=Windows 10 build 16237.&nbsp;<ul><li>To check Windows build number, hit <code>Win Key + R<\/code>, type winver and enter. A window should pop up with the information (the build number will be in parentheses next to version number). You can also use the search Cortana feature and type <code>winver<\/code>. Click the first search item that comes up where it prompts to run the command.<\/li><li>If pre-16237, you\u2019ll need to turn on developer mode by going to: Settings &gt; Update &amp; Security &gt; For Developers and select \u201cDeveloper mode\u201d.<\/li><\/ul><\/li><li>Run bash from the command prompt or start menu.<\/li><li>Run <code>sudo apt install build-essential<\/code> to install GCC. If you get an error, try&nbsp;<code>sudo apt-get update &amp;&amp; sudo apt-get install&nbsp; build-essential<\/code><\/li><li>To get to your Windows drive from Bash, type: <code>cd \/mnt\/c\/Users\/&lt;YourUserName&gt;<\/code><ul><li>Note: There is no supported way to access your WSL drive from Windows command prompt.<\/li><\/ul><\/li><li>Run VS Code as normal.<ul><li>Note: To get VSCode&#8217;s integrated terminal to use WSL bash, add the following to your VS Code user settings:<\/li><\/ul><\/li><\/ol>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&quot;terminal.integrated.shell.windows&quot;: \n&quot;C:\\\\Windows\\\\System32\\\\bash.exe&quot;<\/pre><\/div>\n\n\n\n<h4 class=\"wp-block-heading\">Cygwin<\/h4>\n\n\n\n<p>Note: Prior to Windows 10. Any programs you compile with Cygwin will only run within Cygwin.&nbsp;<br><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><a href=\"https:\/\/cygwin.com\/install.html\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Install Cygwin<\/a><\/li><li>Launch Windows command prompt<\/li><li>Install the necessary packages by running the Cygwin Setup utility.<br><code>setup-x86_64.exe -q -P wget -P gcc-g++ -P make -P diffutils -P libmpfr-devel -P libgmp-devel -P libmpc-devel<\/code><\/li><li>Launch Cygwin-Terminal from its icon<\/li><\/ol>\n\n\n\n<p>To get VSCode&#8217;s integrated terminal to use Cygwin bash, add the following to your VS Code user settings:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&quot;terminal.integrated.shell.windows&quot;: &quot;C:\\\\cygwin\\\\bin\\\\bash.exe&quot;,\n&quot;terminal.integrated.env.windows&quot; {&quot;CHERE_INVOKING&quot;: &quot;1&quot;},\n&quot;terminal.integrated.shellArgs.windows&quot;: [&quot;-l&quot;]<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Use Your Compiler<\/h2>\n\n\n\n<p>Use your Bash shell or Terminal to cd into the folder\/directory where your file is.&nbsp;<br><\/p>\n\n\n\n<p>Compile it with: <code>gcc -Wall -Wextra -o &lt;NameOfFile&gt; &lt;NameOfFile.c&gt; -Wall<\/code> and &#8211;<code>Wextra<\/code> have to do with listing warnings in your terminal when you compile<br> <\/p>\n\n\n\n<p>Run it with: <code>.\/&lt;NameOfFile&gt;<\/code><br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In this article we&#8217;ve looked at two ways to install and run a compiler on your machine. <\/p>\n","protected":false},"excerpt":{"rendered":"Let\u2019s take a look at how to get started with learning C. C, unlike JavaScript, is a low-level language that needs to be compiled in advance, prior to execution. You need to download a compiler to get started, if you would like to work with C on your machine. To do this, you need to&hellip;","protected":false},"author":77,"featured_media":24260,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[50460],"tags":[],"class_list":{"0":"post-24258","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-tech-resources"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Coding","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>C Compilers | Career Karma<\/title>\n<meta name=\"description\" content=\"Follow this step-by-step guide to install a C compiler on your machine so you can work with C applications.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/c-compilers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C: How To Setup Your C Compiler\" \/>\n<meta property=\"og:description\" content=\"Follow this step-by-step guide to install a C compiler on your machine so you can work with C applications.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/c-compilers\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-14T17:59:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-23T01:52:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/binary-code-475664_1280.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"721\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Christina Kopecky\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christina Kopecky\" \/>\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:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"C: How To Setup Your C Compiler\",\"datePublished\":\"2020-10-14T17:59:28+00:00\",\"dateModified\":\"2021-01-23T01:52:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/\"},\"wordCount\":504,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/binary-code-475664_1280.jpg\",\"articleSection\":[\"Tech Resources\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/\",\"name\":\"C Compilers | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/binary-code-475664_1280.jpg\",\"datePublished\":\"2020-10-14T17:59:28+00:00\",\"dateModified\":\"2021-01-23T01:52:06+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"Follow this step-by-step guide to install a C compiler on your machine so you can work with C applications.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/binary-code-475664_1280.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/binary-code-475664_1280.jpg\",\"width\":1020,\"height\":721,\"caption\":\"Binary Code System\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/c-compilers\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Coding\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/code\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"C: How To Setup Your C Compiler\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\",\"name\":\"Christina Kopecky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"caption\":\"Christina Kopecky\"},\"description\":\"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.\",\"sameAs\":[\"http:\\\/\\\/www.linkedin.com\\\/in\\\/cmvnk\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/christina-kopecky\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"C Compilers | Career Karma","description":"Follow this step-by-step guide to install a C compiler on your machine so you can work with C applications.","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:\/\/careerkarma.com\/blog\/c-compilers\/","og_locale":"en_US","og_type":"article","og_title":"C: How To Setup Your C Compiler","og_description":"Follow this step-by-step guide to install a C compiler on your machine so you can work with C applications.","og_url":"https:\/\/careerkarma.com\/blog\/c-compilers\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-14T17:59:28+00:00","article_modified_time":"2021-01-23T01:52:06+00:00","og_image":[{"width":1020,"height":721,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/binary-code-475664_1280.jpg","type":"image\/jpeg"}],"author":"Christina Kopecky","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Christina Kopecky","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/c-compilers\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/c-compilers\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"C: How To Setup Your C Compiler","datePublished":"2020-10-14T17:59:28+00:00","dateModified":"2021-01-23T01:52:06+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/c-compilers\/"},"wordCount":504,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/c-compilers\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/binary-code-475664_1280.jpg","articleSection":["Tech Resources"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/c-compilers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/c-compilers\/","url":"https:\/\/careerkarma.com\/blog\/c-compilers\/","name":"C Compilers | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/c-compilers\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/c-compilers\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/binary-code-475664_1280.jpg","datePublished":"2020-10-14T17:59:28+00:00","dateModified":"2021-01-23T01:52:06+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"Follow this step-by-step guide to install a C compiler on your machine so you can work with C applications.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/c-compilers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/c-compilers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/c-compilers\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/binary-code-475664_1280.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/10\/binary-code-475664_1280.jpg","width":1020,"height":721,"caption":"Binary Code System"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/c-compilers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Coding","item":"https:\/\/careerkarma.com\/blog\/code\/"},{"@type":"ListItem","position":3,"name":"C: How To Setup Your C Compiler"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e","name":"Christina Kopecky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","caption":"Christina Kopecky"},"description":"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.","sameAs":["http:\/\/www.linkedin.com\/in\/cmvnk"],"url":"https:\/\/careerkarma.com\/blog\/author\/christina-kopecky\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/24258","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/77"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=24258"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/24258\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/24260"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=24258"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=24258"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=24258"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}