{"id":1842,"date":"2024-05-10T06:51:04","date_gmt":"2024-05-10T06:51:04","guid":{"rendered":"https:\/\/www.skillvertex.com\/blog\/?p=1842"},"modified":"2024-05-10T06:51:04","modified_gmt":"2024-05-10T06:51:04","slug":"data-types-in-c","status":"publish","type":"post","link":"https:\/\/www.skillvertex.com\/blog\/data-types-in-c\/","title":{"rendered":"Data Types in C"},"content":{"rendered":"\n<div class=\"wp-block-rank-math-toc-block\" id=\"rank-math-toc\" id=\"rank-math-toc\"><p>Table of Contents<\/p><nav><ul><li ><a href=\"#data-types-in-c\">Data Types in C<\/a><\/li><li ><a href=\"#what-is-the-data-type-in-c\">What is the Data type in C<\/a><\/li><li ><a href=\"#integer-data-type\">Integer Data Type<\/a><\/li><li ><a href=\"#character-datatype\">Character datatype <\/a><\/li><li ><a href=\"#float-data-type\">Float Data Type<\/a><\/li><li ><a href=\"#double-data-type\">Double Data Type<\/a><\/li><li ><a href=\"#void-data-type\">Void Data Type<\/a><\/li><li ><a href=\"#faq-data-types-in-c\">FAQ- Data Types in C<\/a><\/li><\/ul><\/nav><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"data-types-in-c\">Data Types in C<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Data types are like the different kinds of building blocks in C programming. They determine what kind of information a variable can hold, what you can do with it, and how much space it takes up. Whether you&#8217;re new to programming or you&#8217;ve been doing it for a while, understanding these data types in C is really important. In this explanation, we&#8217;ll look at the different types and see when to use each one. So, let&#8217;s dive into the world of C data types!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-the-data-type-in-c\">What is the Data type in C<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In C, every variable is linked to a specific data type. This data type defines what kind of information the variable can hold, such as integers, characters, floating-point numbers, or doubles. Each data type uses varying amounts of memory and supports specific operations. Think of a data type as a set of data with predefined values and characteristics.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The data types can  be classified as:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Types <\/strong><\/td><td><strong><em>Description <\/em><\/strong><\/td><\/tr><tr><td>Primitive Data Types<br><\/td><td>Primitive data types in programming are the simplest and most fundamental types used to represent basic values like integers, floating-point numbers, characters, and so on. They serve as the foundational building blocks for working with data in a program.<\/td><\/tr><tr><td>User Defined Data Types<\/td><td>User-defined data types in programming are created and defined by the programmer or user themselves. These data types are not part of the language&#8217;s built-in types but are designed and customized by the user to suit specific requirements or to structure data in a particular way that fits the needs of their program.<\/td><\/tr><tr><td>Derived Types<br><\/td><td>Derived data types in programming are types that are created by combining or deriving from the primitive or built-in data types. These types are constructed to meet specific programming needs and are often built upon the foundation of existing data types. They can include arrays, pointers, structures, and more, all customized based on the requirements of the program.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Derived data types in programming are types that are created by combining or deriving from the primitive or built-in data types. These types are constructed to meet specific programming needs and are often built upon the foundation of existing data types. They can include arrays, pointers, structures, and more, all customized based on the requirements of the program.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Data Type&nbsp;<br>&nbsp;<\/th><th>Size (bytes)&nbsp;<br>&nbsp;<\/th><th>Range<br>&nbsp;<\/th><th>Format Specifier&nbsp;<br>&nbsp;<\/th><\/tr><\/thead><tbody><tr><td><strong>short int&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>2&nbsp;<br>&nbsp;<\/td><td>-32,768 to 32,767&nbsp;<br>&nbsp;<\/td><td>%hd&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>unsigned short int&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>2&nbsp;<br>&nbsp;<\/td><td>0 to 65,535&nbsp;<br>&nbsp;<\/td><td>%hu&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>unsigned int&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>4&nbsp;<br>&nbsp;<\/td><td>0 to 4,294,967,295&nbsp;<br>&nbsp;<\/td><td>%u&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>int&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>4&nbsp;<br>&nbsp;<\/td><td>-2,147,483,648 to 2,147,483,647&nbsp;<br>&nbsp;<\/td><td>%d&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>long int&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>4&nbsp;<br>&nbsp;<\/td><td>-2,147,483,648 to 2,147,483,647&nbsp;<br>&nbsp;<\/td><td>%ld&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>unsigned long int&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>4&nbsp;<br>&nbsp;<\/td><td>0 to 4,294,967,295&nbsp;<br>&nbsp;<\/td><td>%lu&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>long long int&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>8&nbsp;<br>&nbsp;<\/td><td>-(2^63) to (2^63)-1&nbsp;<br>&nbsp;<\/td><td>%lld&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>unsigned long long int&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>8&nbsp;<br>&nbsp;<\/td><td>0 to 18,446,744,073,709,551,615&nbsp;<br>&nbsp;<\/td><td>%llu&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>signed char&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>1&nbsp;<br>&nbsp;<\/td><td>-128 to 127&nbsp;<br>&nbsp;<\/td><td>%c&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>unsigned char&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>1&nbsp;<br>&nbsp;<\/td><td>0 to 255&nbsp;<br>&nbsp;<\/td><td>%c&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>float&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>4&nbsp;<br>&nbsp;<\/td><td>1.2E-38 to 3.4E+38<\/td><td>%f&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>double&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>8&nbsp;<br>&nbsp;<\/td><td>1.7E-308 to 1.7E+308<\/td><td>%lf&nbsp;<br>&nbsp;<\/td><\/tr><tr><td><strong>long double&nbsp;<\/strong><br><strong>&nbsp;<\/strong><\/td><td>16&nbsp;<br>&nbsp;<\/td><td>3.4E-4932 to 1.1E+4932<\/td><td>%Lf&nbsp;<br>&nbsp;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"integer-data-type\">Integer Data Type<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In C, the integer data type is employed to store whole numbers without decimal points. It can accommodate octal values, hexadecimal values, and standard decimal values.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Key characteristics of the <code>int<\/code> data type in C:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Range<\/strong>: It can hold values ranging from -2,147,483,648 to 2,147,483,647.<\/li>\n\n\n\n<li><strong>Size<\/strong>: Typically, it occupies 4 bytes in memory.<\/li>\n\n\n\n<li><strong>Format Specifier<\/strong>: When displaying or reading <code>int<\/code> values, you use the format specifier <code>%d<\/code>.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Syntax of Integer<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">We use&nbsp;int keyword&nbsp;to declare the integer variable:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>int var_name;\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">The integer data type can also be used as<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here are brief explanations of different integer data types in C:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>unsigned int<\/strong>: The <code>unsigned int<\/code> data type in C is used to store values ranging from zero to positive numbers. It cannot store negative values like the <code>signed int<\/code>.<\/li>\n\n\n\n<li><strong>short int<\/strong>: The <code>short int<\/code> data type is smaller in size than the regular <code>int<\/code>, typically using 2 bytes. This means it can store values from -32,768 to 32,767.<\/li>\n\n\n\n<li><strong>long int<\/strong>: The <code>long int<\/code> data type is a larger version of the regular <code>int<\/code> and can store values greater than what an <code>int<\/code> can hold.<\/li>\n\n\n\n<li><strong>unsigned short int<\/strong>: Similar to the relationship between <code>unsigned int<\/code> and <code>int<\/code>, <code>unsigned short int<\/code> can only store non-negative values and is smaller in size than <code>short int<\/code>.<\/li>\n<\/ol>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"example-of-int\">Example of int<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ C program to print Integer data types.\n#include &lt;stdio.h&gt;\n \nint main()\n{\n    \/\/ Integer value with positive data.\n    int a = 9;\n \n    \/\/ integer value with negative data.\n    int b = -9;\n \n    \/\/ U or u is Used for Unsigned int in C.\n    int c = 89U;\n \n    \/\/ L or l is used for long int in C.\n    long int d = 99998L;\n \n    printf(\"Integer value with positive data: %d\\n\", a);\n    printf(\"Integer value with negative data: %d\\n\", b);\n    printf(\"Integer value with an unsigned int data: %u\\n\",\n           c);\n    printf(\"Integer value with an long int data: %ld\", d);\n \n    return 0;\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Output <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Integer value with positive data: 9\nInteger value with negative data: -9\nInteger value with an unsigned int data: 89\nInteger value with an long int data: 99998<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"character-datatype\">Character datatype <\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In C, the character data type is designed to store a single character. It occupies 1 byte of memory and is the most fundamental data type in the language.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here are some key characteristics of the <code>char<\/code> data type in C:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Range<\/strong>: It can represent values from (-128 to 127) or (0 to 255), depending on whether it&#8217;s signed or unsigned.<\/li>\n\n\n\n<li><strong>Size<\/strong>: It typically uses 1 byte of memory in most compilers.<\/li>\n\n\n\n<li><strong>Format Specifier<\/strong>: When working with <code>char<\/code> values in input\/output operations, you use the format specifier <code>%c<\/code>.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Syntax of char <\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The&nbsp;<strong>char keyword<\/strong>&nbsp;is used to declare the variable of character type:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>char var_name;\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><em><strong>Examples of char<\/strong><\/em><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ C program to print Integer data types.\n#include &lt;stdio.h&gt;\n \nint main()\n{\n    char a = 'a';\n    char c;\n \n    printf(\"Value of a: %c\\n\", a);\n \n    a++;\n    printf(\"Value of a after increment is: %c\\n\", a);\n \n    \/\/ c is assigned ASCII values\n    \/\/ which corresponds to the\n    \/\/ character 'c'\n    \/\/ a--&gt;97 b--&gt;98 c--&gt;99\n    \/\/ here c will be printed\n    c = 99;\n \n    printf(\"Value of c: %c\", c);\n \n    return 0;\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Output<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Value of a: a\nValue of a after increment is: b\nValue of c: c<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"float-data-type\">Float Data Type<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In C programming, the <code>float<\/code> data type is employed to store floating-point values, which include both decimal and exponential numbers. It is used for representing decimal numbers with single-precision accuracy.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here are some key characteristics of the <code>float<\/code> data type in C:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Range<\/strong>: It can store values within the range of 1.2E-38 to 3.4E+38.<\/li>\n\n\n\n<li><strong>Size<\/strong>: Typically, it uses 4 bytes of memory.<\/li>\n\n\n\n<li><strong>Format Specifier<\/strong>: When displaying <code>float<\/code> values in input\/output operations, you use the format specifier <code>%f<\/code>.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Syntax of float <\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The&nbsp;<strong>float keyword&nbsp;<\/strong>is used to declare the variable as a floating point:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>float var_name;\n<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Example of Float<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ C Program to demonstrate use\n\/\/ of Floating types\n#include &lt;stdio.h&gt;\n \nint main()\n{\n    float a = 9.0f;\n    float b = 2.5f;\n \n    \/\/ 2x10^-4\n    float c = 2E-4f;\n    printf(\"%f\\n\", a);\n    printf(\"%f\\n\", b);\n    printf(\"%f\", c);\n \n    return 0;\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Output <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>9.000000\n2.500000\n0.000200<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"double-data-type\">Double Data Type<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In C programming, the <code>double<\/code> data type is used to store decimal numbers with double precision. It allows you to define numeric values that hold decimal numbers with high precision.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here are some key characteristics of the <code>double<\/code> data type in C:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Range<\/strong>: It can store values within the extensive range of 1.7E-308 to 1.7E+308.<\/li>\n\n\n\n<li><strong>Size<\/strong>: Typically, it occupies 8 bytes of memory, which is double the size of the <code>float<\/code> data type.<\/li>\n\n\n\n<li><strong>Format Specifier<\/strong>: When displaying <code>double<\/code> values in input\/output operations, you use the format specifier <code>%lf<\/code>.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Syntax Of Double<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The variable can be declared as double precision floating point using the&nbsp;<strong>double keyword:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>double var_name;\n<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"example-of-double\">Example of Double<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ C Program to demonstrate\n\/\/ use of double data type\n#include &lt;stdio.h&gt;\n \nint main()\n{\n    double a = 123123123.00;\n    double b = 12.293123;\n    double c = 2312312312.123123;\n \n    printf(\"%lf\\n\", a);\n \n    printf(\"%lf\\n\", b);\n \n    printf(\"%lf\", c);\n \n    return 0;\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Output<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>123123123.000000\n12.293123\n2312312312.123123<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"void-data-type\">Void Data Type<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">In C, &#8220;void&#8221; means nothing specific. It&#8217;s used when a function doesn&#8217;t return anything, doesn&#8217;t take special input, or when we want a pointer to work with different types of data. It&#8217;s a way of saying &#8220;nothing specific here.&#8221;<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Syntax:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ function return type void\n\nvoid exit(int check);\n\n\/\/ Function without any parameter can accept void.\n\nint print(void);\n\n\/\/ memory allocation function which\n\/\/ returns a pointer to void.\nvoid *malloc (size_t size);<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Examples of void<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ C program to demonstrate\n\/\/ use of void pointers\n#include &lt;stdio.h&gt;\n \nint main()\n{\n    int val = 30;\n    void* ptr = &amp;val;\n    printf(\"%d\", *(int*)ptr);\n    return 0;\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Output <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>30<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"size-of-data-types-in-c\">Size of Data Types in C<\/h4>\n\n\n\n<p class=\"wp-block-paragraph\">In C, the size of data types depends on the architecture of the system, so there&#8217;s no universal size for them. To find out the size of data types, you can use the <code>sizeof()<\/code> operator.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Example<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/ C Program to print size of\n\/\/ different data type in C\n#include &lt;stdio.h&gt;\n \nint main()\n{\n    int size_of_int = sizeof(int);\n    int size_of_char = sizeof(char);\n    int size_of_float = sizeof(float);\n    int size_of_double = sizeof(double);\n \n    printf(\"The size of int data type : %d\\n\", size_of_int);\n    printf(\"The size of char data type : %d\\n\",\n           size_of_char);\n    printf(\"The size of float data type : %d\\n\",\n           size_of_float);\n    printf(\"The size of double data type : %d\",\n           size_of_double);\n \n    return 0;\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Output<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>The size of int data type : 4\nThe size of char data type : 1\nThe size of float data type : 4\nThe size of double data type : 8<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"faq-data-types-in-c\">FAQ- Data Types in C<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1694601640096\" class=\"rank-math-list-item\">\n<h4 class=\"rank-math-question \">Q1. What is data type and its types?<\/h4>\n<div class=\"rank-math-answer \">\n\n<p>Ans. In software programming, a data type specifies the kind of value that a variable can hold and determines which mathematical, relational, or logical operations can be performed on that value without resulting in an error.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1694601651775\" class=\"rank-math-list-item\">\n<h4 class=\"rank-math-question \">Q2. What is void data type in C?<\/h4>\n<div class=\"rank-math-answer \">\n\n<p>Ans. The void data type in programming always signifies an empty set of values. You can only use the void type specifier when declaring a pointer. You cannot create a variable with the void type, but you can explicitly convert any expression into the void type.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1694601659657\" class=\"rank-math-list-item\">\n<h4 class=\"rank-math-question \">Q3. How many data types are?<\/h4>\n<div class=\"rank-math-answer \">\n\n<p>Ans. In modern computer programming languages, there are typically five fundamental categories of data types: Integral, Floating Point, Character, Character String, and Composite types. Each of these categories may include specific subtypes that serve various purposes within their respective broad category.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>Data Types in C Data types are like the different kinds of building blocks in C programming. They determine what kind of information a variable can hold, what you can do with it, and how much space it takes up. Whether you&#8217;re new to programming or you&#8217;ve been doing it for a while, understanding these &#8230; <a title=\"Data Types in C\" class=\"read-more\" href=\"https:\/\/www.skillvertex.com\/blog\/data-types-in-c\/\" aria-label=\"More on Data Types in C\">Read more<\/a><\/p>\n","protected":false},"author":4,"featured_media":5275,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[27],"tags":[309],"class_list":["post-1842","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-c-programming","tag-data-types-in-c","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"_links":{"self":[{"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/posts\/1842","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/comments?post=1842"}],"version-history":[{"count":13,"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/posts\/1842\/revisions"}],"predecessor-version":[{"id":10604,"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/posts\/1842\/revisions\/10604"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/media\/5275"}],"wp:attachment":[{"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/media?parent=1842"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/categories?post=1842"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skillvertex.com\/blog\/wp-json\/wp\/v2\/tags?post=1842"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}