{"id":11401,"date":"2022-09-27T07:13:55","date_gmt":"2022-09-27T01:43:55","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/"},"modified":"2022-09-27T07:13:55","modified_gmt":"2022-09-27T01:43:55","slug":"solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/","title":{"rendered":"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-49954936\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"49954936\" data-parentid=\"49954102\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>You might want to learn how these objects are laid out in memory:<\/p>\n<pre><code>int array[][3] = { {1,2,3}, {4,5,6}, {7,8,9} };\nint *p_array = (int *) array;\n<\/code><\/pre>\n<p>This creates an object <code>array<\/code> of type <code>int[][3]<\/code> in memory (in this case stack) physically laid out in a hypothetical (16-bit word size) architecture as:<\/p>\n<pre><code>  array 0x8000: 0x0001\n        0x8002: 0x0002\n        0x8004: 0x0003\n        0x8006: 0x0004\n        0x8008: 0x0005\n        0x800A: 0x0006\n        0x800C: 0x0007\n        0x800E: 0x0008\n        0x8010: 0x0009\np_array 0x8012: 0x8000\n<\/code><\/pre>\n<p>Where <code>0x8000<\/code> denotes the imaginary stack address of <code>array<\/code>.<\/p>\n<p>However, in your second example:<\/p>\n<pre><code>int array1[] = { 11, 12 };\nint array2[] = { 13, 14, 15, 16 };\nint array3[] = { 17, 18, 19 };\nint *array_pointers[] = { array1, array2, array3 };\n\nint *array_pointers2 = (int*) array_pointers;\n<\/code><\/pre>\n<p>Here <code>array_pointers<\/code> is of type <code>int *[]<\/code> which means it is a pointer to array of <code>int<\/code>s. And the memory layout would be like the following:<\/p>\n<pre><code>array1 0x8000: 0x000B\n       0x8002: 0x000C\narray2 0x8004: 0x000D\n       0x8006: 0x000E\n       0x8008: 0x000F\n       0x800A: 0x0010\narray3 0x800C: 0x0011\n       0x800E: 0x0012\n       0x8010: 0x0013\n<\/code><\/pre>\n<p>and<\/p>\n<pre><code>array_pointers:  0x8012: 0x8000 address of array1\n                 0x8014: 0x8004 address of array2\n                 0x8016: 0x800C address of array3\narray_pointers2: 0x8018: 0x8012 address of array_pointers\n<\/code><\/pre>\n<p>So when you try to print the contents of <code>array_pointers2<\/code>, which now contain pointers to array of <code>int<\/code>s, you will print the address values rather than the numbers they point to.<\/p>\n<p>Here is an example that outputs the memory address of those objects:<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/ideone.com\/T52Ow0\">https:\/\/ideone.com\/T52Ow0<\/a><\/p>\n<p>Which prints:<\/p>\n<pre><code>array      0x7ffeda682090: 0x00000000000001\n           0x7ffeda682094: 0x00000000000002\n           0x7ffeda682098: 0x00000000000003\n           0x7ffeda68209c: 0x00000000000004\n           0x7ffeda6820a0: 0x00000000000005\n           0x7ffeda6820a4: 0x00000000000006\n           0x7ffeda6820a8: 0x00000000000007\n           0x7ffeda6820ac: 0x00000000000008\n           0x7ffeda6820b0: 0x00000000000009\np_array    0x7ffeda682038: 0x007ffeda682090\n\narray1     0x7ffeda68204c: 0x0000000000000b\n           0x7ffeda682050: 0x0000000000000c\narray2     0x7ffeda682060: 0x0000000000000d\n           0x7ffeda682064: 0x0000000000000e\n           0x7ffeda682068: 0x0000000000000f\n           0x7ffeda68206c: 0x00000000000010\narray3     0x7ffeda682054: 0x00000000000011\n           0x7ffeda682058: 0x00000000000012\n           0x7ffeda68205c: 0x00000000000013\narray_poin 0x7ffeda682070: 0x007ffeda68204c\n           0x7ffeda682078: 0x007ffeda682060\n           0x7ffeda682080: 0x007ffeda682054\narray_poi2 0x7ffeda682040: 0x007ffeda682070\n<\/code><\/pre>\n<p>on my computer.<\/p>\n<p>Source code for that in case external link expires:<\/p>\n<pre><code>#include &lt;stdio.h&gt;\n#include &lt;string.h&gt;\n\nint main(void)\n{\n    int array[][3] = { {1,2,3}, {4,5,6}, {7,8,9} };\n    int *p_array = (int*) array;\n\n    for (int i = 0; i &lt; 9; i++) {\n        printf(\"%-10s %08p: %016p\\n\", i == 0 ? \"array\" : \"\", &amp;p_array[i], p_array[i]);\n    }\n\n    printf(\"%-10s %08p: %016p\\n\", \"p_array\", &amp;p_array, p_array);\n\n    int array1[] = { 11, 12 };\n    int array2[] = { 13, 14, 15, 16 };\n    int array3[] = { 17, 18, 19 };\n\n    int *array_pointers[] = { array1, array2, array3 };\n    int *array_pointers2 = (int*) array_pointers;\n\n    putchar('\\n');\n\n    for (int i = 0; i &lt; sizeof(array1) \/ sizeof(array1[0]); i++) {\n        printf(\"%-10s %08p: %016p\\n\", i == 0 ? \"array1\" : \"\", &amp;array1[i], array1[i]);\n    }\n\n    for (int i = 0; i &lt; sizeof(array2) \/ sizeof(array2[0]); i++) {\n        printf(\"%-10s %08p: %016p\\n\", i == 0 ? \"array2\" : \"\", &amp;array2[i], array2[i]);\n    }\n\n    for (int i = 0; i &lt; sizeof(array3) \/ sizeof(array3[0]); i++) {\n        printf(\"%-10s %08p: %016p\\n\", i == 0 ? \"array3\" : \"\", &amp;array3[i], array3[i]);\n    }\n\n    for (int i = 0; i &lt; sizeof(array_pointers) \/ sizeof(array_pointers[0]); i++) {\n        printf(\"%-10s %08p: %016p\\n\", i == 0 ? \"array_poin\" : \"\", &amp;array_pointers[i], array_pointers[i]);\n    }\n\n    printf(\"%-10s %08p: %016p\\n\", \"array_poi2\", &amp;array_pointers2, array_pointers2);\n\n    return 0;\n}\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] You might want to learn how these objects are laid out in memory: int array[][3] = { {1,2,3}, {4,5,6}, {7,8,9} }; int *p_array = (int *) array; This creates an object array of type int[][3] in memory (in this case stack) physically laid out in a hypothetical (16-bit word size) architecture as: array 0x8000: &#8230; <a title=\"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/\" aria-label=\"More on [Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[361,324,387,652,712],"class_list":["post-11401","post","type-post","status-publish","format-standard","hentry","category-solved","tag-arrays","tag-c","tag-casting","tag-int","tag-pointers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] You might want to learn how these objects are laid out in memory: int array[][3] = { {1,2,3}, {4,5,6}, {7,8,9} }; int *p_array = (int *) array; This creates an object array of type int[][3] in memory (in this case stack) physically laid out in a hypothetical (16-bit word size) architecture as: array 0x8000: ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-27T01:43:55+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\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:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers\",\"datePublished\":\"2022-09-27T01:43:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/\"},\"wordCount\":187,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"arrays\",\"c++\",\"casting\",\"int\",\"pointers\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/\",\"name\":\"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-09-27T01:43:55+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers - JassWeb","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:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers - JassWeb","og_description":"[ad_1] You might want to learn how these objects are laid out in memory: int array[][3] = { {1,2,3}, {4,5,6}, {7,8,9} }; int *p_array = (int *) array; This creates an object array of type int[][3] in memory (in this case stack) physically laid out in a hypothetical (16-bit word size) architecture as: array 0x8000: ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/","og_site_name":"JassWeb","article_published_time":"2022-09-27T01:43:55+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers","datePublished":"2022-09-27T01:43:55+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/"},"wordCount":187,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["arrays","c++","casting","int","pointers"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/","url":"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/","name":"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-09-27T01:43:55+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-why-can-i-convert-from-int-to-int-in-the-case-of-the-two-dimensional-array-but-not-in-the-case-of-the-array-of-pointers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Why can I convert from int ** to int * in the case of the two-dimensional array, but not in the case of the array of pointers"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1775798750","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/11401","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=11401"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/11401\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=11401"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=11401"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=11401"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}