{"id":290,"date":"2025-11-30T20:51:16","date_gmt":"2025-11-30T12:51:16","guid":{"rendered":"http:\/\/4.189.252.43\/?p=290"},"modified":"2025-11-30T20:51:17","modified_gmt":"2025-11-30T12:51:17","slug":"%e5%87%bd%e6%95%b0-2","status":"publish","type":"post","link":"http:\/\/4.189.252.43\/index.php\/2025\/11\/30\/%e5%87%bd%e6%95%b0-2\/","title":{"rendered":"\u51fd\u6570"},"content":{"rendered":"\n<h2>\u4e00\u3001\u6982\u8ff0<\/h2>\n<p>\u51fd\u6570\u662f C \u8bed\u8a00\u7a0b\u5e8f\u7684\u57fa\u672c\u7ed3\u6784\u5355\u5143\uff0c\u7528\u4e8e\u5c01\u88c5\u53ef\u590d\u7528\u7684\u8ba1\u7b97\u903b\u8f91\u3002\u4f7f\u7528\u51fd\u6570\u80fd\u591f\u63d0\u5347\u4ee3\u7801\u6a21\u5757\u5316\u7a0b\u5ea6\u3001\u53ef\u7ef4\u62a4\u6027\u4e0e\u53ef\u6269\u5c55\u6027\u3002<\/p>\n<hr \/>\n<h2>\u4e8c\u3001\u51fd\u6570\u7684\u7ec4\u6210<\/h2>\n<p>C \u8bed\u8a00\u4e2d\u7684\u51fd\u6570\u901a\u5e38\u5305\u542b\u4e09\u90e8\u5206\uff1a<\/p>\n<ul>\n<li><strong>\u51fd\u6570\u58f0\u660e\uff08Prototype\uff09<\/strong>\uff1a\u544a\u77e5\u7f16\u8bd1\u5668\u51fd\u6570\u7684<strong>\u540d\u79f0<\/strong>\u3001<strong>\u53c2\u6570<\/strong>\u4e0e<strong>\u8fd4\u56de\u7c7b\u578b<\/strong>\u3002<\/li>\n<li><strong>\u51fd\u6570\u5b9a\u4e49\uff08Definition\uff09<\/strong>\uff1a\u51fd\u6570\u7684\u5b9e\u9645\u5b9e\u73b0\u3002<\/li>\n<li><strong>\u51fd\u6570\u8c03\u7528\uff08Call\uff09<\/strong>\uff1a\u6267\u884c\u51fd\u6570\u903b\u8f91\u5e76\u83b7\u53d6\u8fd4\u56de\u503c\u3002<\/li>\n\n<\/ul>\n<p>\u793a\u4f8b\uff1af(x) R   y = f(x) = x^2   x = 2<\/p>\n<pre><code class='language-c' lang='c'>int add(int a, int b);              \/\/ \u58f0\u660e\n\n\nint add(int a, int b) { return a+b; }  \/\/ \u5b9a\u4e49\n\n\nadd(3, 5);                           \/\/ \u8c03\u7528\n<\/code><\/pre>\n<hr \/>\n<h2>\u4e09\u3001\u51fd\u6570\u7684\u5b9a\u4e49<\/h2>\n<h3>1. \u57fa\u672c\u683c\u5f0f<\/h3>\n<pre><code class='language-c' lang='c'>\u8fd4\u56de\u7c7b\u578b \u51fd\u6570\u540d(\u53c2\u6570\u5217\u8868)\n{\n    \/\/ \u51fd\u6570\u4f53\n}\n<\/code><\/pre>\n<p>\u793a\u4f8b\uff1a<\/p>\n<pre><code class='language-c' lang='c'>int max(int x, int y)\n{\n    if (x &gt; y)\n        return x; \/\/ \u9000\u51fa\u51fd\u6570\n    return y;\n}\n<\/code><\/pre>\n<hr \/>\n<h2>\u56db\u3001\u51fd\u6570\u7684\u58f0\u660e<\/h2>\n<p>\u51fd\u6570\u58f0\u660e\u7684\u4f5c\u7528\u662f\u5728\u5b9a\u4e49\u4e4b\u524d\u5411\u7f16\u8bd1\u5668\u63d0\u4f9b\u51fd\u6570\u63a5\u53e3\u4fe1\u606f\u3002\u4f8b\u5982\uff1a<\/p>\n<p><code>\u8fd4\u56de\u503c \u51fd\u6570\u540d\uff08\u4f20\u5165\u7684\u53c2\u6570\uff09<\/code><\/p>\n<pre><code class='language-c' lang='c'>int max(int x, int y);\n\n\n<\/code><\/pre>\n<p>\u58f0\u660e\u53ef\u653e\u5728\u6587\u4ef6\u5f00\u5934\u6216\u5934\u6587\u4ef6\u4e2d\uff0c\u4fbf\u4e8e\u5206\u79bb\u7f16\u8bd1\u3002<\/p>\n<hr \/>\n<h2>\u4e94\u3001\u51fd\u6570\u8c03\u7528<\/h2>\n<p>\u8c03\u7528\u65b9\u5f0f\uff1a<\/p>\n<pre><code class='language-c' lang='c'>result = max(10, 20);\n<\/code><\/pre>\n<p>\u5b9e\u53c2\u4e0e\u5f62\u53c2\u4e4b\u95f4\u91c7\u7528<strong>\u503c\u4f20\u9012<\/strong>\u673a\u5236\uff0c<strong>\u5f62\u53c2<\/strong> n\u63a5\u6536\u7684\u662f<strong>\u5b9e\u53c2<\/strong> a\u7684\u526f\u672c\u3002<\/p>\n<p>\u793a\u4f8b\uff1a<\/p>\n<pre><code class='language-c' lang='c'>#include &lt;stdio.h&gt;\n\nint square(int n)\n{\n    n = n + 1;\n    return n * n;\n}\n\nint main()\n{\n    int a = 5;\n    int r = square(a);\n    printf(&quot;%d\\n%d&quot;, r, a);\n    return 0;\n}\n<\/code><\/pre>\n<ul>\n<li>\u51fd\u6570\u8c03\u7528\u9700\u8981\u5728\u51fd\u6570\u58f0\u660e\u4e4b\u540e<\/li>\n\n<\/ul>\n<hr \/>\n<h2>\u516d\u3001\u8fd4\u56de\u503c\u4e0e\u8fd4\u56de\u8bed\u53e5<\/h2>\n<ul>\n<li>\u4f7f\u7528 <code>return<\/code> \u8fd4\u56de\u8868\u8fbe\u5f0f\u7684\u503c\u3002<\/li>\n<li>\u8fd4\u56de\u7c7b\u578b\u5fc5\u987b\u4e0e\u51fd\u6570\u58f0\u660e\u4e00\u81f4\u3002<\/li>\n<li>\u51fd\u6570\u4e0d\u80fd\u8fd4\u56de\u6570\u7ec4   <\/li>\n<li>\u65e0\u8fd4\u56de\u503c\u65f6\u4f7f\u7528 <code>void<\/code>\u3002<\/li>\n\n<\/ul>\n<p>\u793a\u4f8b\uff1a<\/p>\n<pre><code class='language-c' lang='c'>void hello()\n{\n    printf(&quot;Hello\\n&quot;);\n}\n\nbool big(int a, int b){\n    return a &lt; b;\n}\n<\/code><\/pre>\n<hr \/>\n<h2>\u4e03\u3001\u53c2\u6570\u4f20\u9012\u4e0e\u4f5c\u7528<\/h2>\n<p>C \u8bed\u8a00\u91c7\u7528<strong>\u503c\u4f20\u9012<\/strong>\uff1a\u51fd\u6570\u5185\u90e8\u4fee\u6539\u5f62\u53c2\u4e0d\u4f1a \u5f71\u54cd\u5916\u90e8\u53d8\u91cf\u3002<\/p>\n<p>\u793a\u4f8b\uff1a<\/p>\n<pre><code class='language-c' lang='c'>#include &lt;stdio.h&gt;\n\nvoid setZero(int a)\n{\n    a = 0;\n}\n\nint main()\n{\n    int a = 10;\n    setZero(a);\n    printf(&quot;a = %d\\n&quot;, a);  \/\/ \u8f93\u51fa\u4ecd\u4e3a 10\n    return 0;\n}\n<\/code><\/pre>\n<p>\u5f53\u9700\u8981\u4fee\u6539\u5916\u90e8\u53d8\u91cf\u65f6\u4f7f\u7528<strong>\u6307\u9488<\/strong>\uff08\u6269\u5c55\u5185\u5bb9\uff09\u3002<\/p>\n<h3>\u4f20\u9012\u6570\u5b57\u578b\u53c2\u6570<\/h3>\n<p>\u5728 C \u8bed\u8a00\u4e2d\uff0c\u6570\u7ec4\u4f5c\u4e3a\u51fd\u6570\u53c2\u6570\u65f6\u4f1a\u9000\u5316\u4e3a\u6307\u5411\u9996\u5143\u7d20\u7684\u6307\u9488\u3002\u56e0\u6b64\u51fd\u6570\u63a5\u6536\u7684\u662f\u6307\u9488\u5f62\u5f0f\uff0c\u65e0\u6cd5\u4ece\u53c2\u6570\u672c\u8eab\u83b7\u77e5\u6570\u7ec4\u957f\u5ea6\uff0c\u9700\u663e\u5f0f\u4f20\u9012\u957f\u5ea6\u3002<\/p>\n<h3>1. \u5178\u578b\u5b9a\u4e49\u65b9\u5f0f<\/h3>\n<pre><code class='language-c' lang='c'>void printArray(int arr[], int n)\n{\n    for (int i = 0; i &lt; n; i++)\n        printf(&quot;%d &quot;, arr[i]);\n    printf(&quot;\n&quot;);\n}\n<\/code><\/pre>\n<p>\u7b49\u4ef7\u5199\u6cd5\uff1a<\/p>\n<pre><code class='language-c' lang='c'>void printArray(int *arr, int n)\n<\/code><\/pre>\n<h3>2. \u8c03\u7528\u65b9\u5f0f<\/h3>\n<pre><code class='language-c' lang='c'>int a[5] = {1, 2, 3, 4, 5};\nprintArray(a, 5);\n<\/code><\/pre>\n<h3>3. \u4fee\u6539\u6570\u7ec4\u5185\u5bb9<\/h3>\n<p>\u51fd\u6570\u5185\u90e8\u53ef\u4fee\u6539\u6570\u7ec4\u5143\u7d20\uff0c\u5916\u90e8\u53ef\u89c1\u3002<\/p>\n<pre><code class='language-c' lang='c'>void setZero(int arr[], int n)\n{\n    for (int i = 0; i &lt; n; i++)\n        arr[i] = 0;\n}\n\nint main(){\n    int arr[3] = {1, 2, 3};\n    setZero(arr);\t\/\/ \u4f20\u5165\u53ea\u9700\u8981\u4f20\u540d\u79f0\n}\n<\/code><\/pre>\n<h3>4. \u591a\u7ef4\u6570\u7ec4\u7684\u4f20\u9012<\/h3>\n<p>\u4e8c\u7ef4\u6570\u7ec4\u9700\u6307\u5b9a\u5217\u6570\uff1a<\/p>\n<pre><code class='language-c' lang='c'>void show(int *arr[4], int r)\n{\n    for (int i = 0; i &lt; r; i++)\n        for (int j = 0; j &lt; 4; j++)\n            printf(&quot;%d &quot;, arr[i][j]);\n}\n<\/code><\/pre>\n<hr \/>\n<h2>\u516b\u3001\u9759\u6001\u53d8\u91cf\u4e0e\u751f\u547d\u5468\u671f<\/h2>\n<p>\u51fd\u6570\u4e2d\u7684\u53d8\u91cf\u9ed8\u8ba4\u4e3a\u81ea\u52a8\u53d8\u91cf\uff0c\u6bcf\u6b21\u8c03\u7528\u521b\u5efa\u5e76\u9500\u6bc1\u3002\u4f7f\u7528 <code>static<\/code> \u53ef<strong>\u8ba9\u53d8\u91cf\u5728\u591a\u6b21\u8c03\u7528\u95f4\u4fdd\u6301\u72b6\u6001<\/strong>\u3002<\/p>\n<p>\u793a\u4f8b\uff1a<\/p>\n<pre><code class='language-c' lang='c'>#include &lt;stdio.h&gt;\n\nvoid counter()\n{\n    static int c = 0;\n    c++;\n    printf(&quot;c = %d\\n&quot;, c);\n}\n\nint main()\n{\n    counter();\n    counter();\n    counter();\n    return 0;\n}\n<\/code><\/pre>\n<p>\u8f93\u51fa\u4f9d\u6b21\u4e3a 1,2,3\u3002<\/p>\n<hr \/>\n<h2>\u4e5d\u3001\u51fd\u6570\u4e0e\u591a\u6587\u4ef6\u6a21\u5757\u5316<\/h2>\n<h3>\u76ee\u5f55\u7ed3\u6784\u793a\u4f8b<\/h3>\n<pre><code>project\/\n\u251c\u2500\u2500 main.c\n\u251c\u2500\u2500 math.c\n\u2514\u2500\u2500 math.h\n<\/code><\/pre>\n<h3>math.h \u7528\u4e8e\u51fd\u6570\u58f0\u660e\u4ee5\u53ca\u5168\u5c40\u53d8\u91cf\u58f0\u660e<\/h3>\n<pre><code class='language-c' lang='c'>#ifndef MATH_H\n#define MATH_H\n\nint add(int a, int b);\nint sub(int a, int b);\n\n#endif\n<\/code><\/pre>\n<h3>math.c \u7528\u4e8e\u51fd\u6570\u7684\u5b9a\u4e49<\/h3>\n<pre><code class='language-c' lang='c'>#include &quot;math.h&quot;\n\nint add(int a, int b)\n{\n    return a + b;\n}\n\nint sub(int a, int b)\n{\n    return a - b;\n}\n<\/code><\/pre>\n<h3>main.c<\/h3>\n<pre><code class='language-c' lang='c'>#include &lt;stdio.h&gt;\n#include &quot;math.h&quot;\n\nint main()\n{\n    printf(&quot;%d\\n&quot;, add(3, 7));\n    printf(&quot;%d\\n&quot;, sub(10, 5));\n    return 0;\n}\n<\/code><\/pre>\n<p>\u7f16\u8bd1\u65b9\u5f0f\uff08MinGW-w64\uff09\uff1a<\/p>\n<pre><code>gcc main.c math.c -o app.exe\n<\/code><\/pre>\n<hr \/>\n<h2>\u5341\u3001\u8bbe\u8ba1\u51fd\u6570\u7684\u539f\u5219<\/h2>\n<ul>\n<li>\u5355\u4e00\u804c\u8d23\uff1a\u6bcf\u4e2a\u51fd\u6570\u53ea\u5b8c\u6210\u4e00\u4e2a\u903b\u8f91\u4efb\u52a1\u3002<\/li>\n<li>\u547d\u540d\u6e05\u6670\uff1a\u51fd\u6570\u540d\u5e94\u51c6\u786e\u63cf\u8ff0\u5176\u884c\u4e3a\u3002<\/li>\n<li>\u63a7\u5236\u957f\u5ea6\uff1a\u5c3d\u91cf\u907f\u514d\u8fc7\u957f\u51fd\u6570\uff08&gt;80 \u884c\uff09\u3002<\/li>\n\n<\/ul>\n<hr \/>\n<h2>\u5341\u4e00\u3001\u7efc\u5408\u793a\u4f8b<\/h2>\n<p>\u4ee5\u4e0b\u793a\u4f8b\u5c55\u793a\u4e00\u4e2a\u8f93\u5165\u3001\u5904\u7406\u4e0e\u8f93\u51fa\u5206\u79bb\u7684\u51fd\u6570\u7ed3\u6784\uff1a<\/p>\n<pre><code class='language-c' lang='c'>#include &lt;stdio.h&gt;\n\nint readNumber()\n{\n    int x;\n    scanf(&quot;%d&quot;, &amp;x);\n    return x;\n}\n\nint compute(int a, int b)\n{\n    return a * b + 10;\n}\n\nvoid showResult(int r)\n{\n    printf(&quot;Result = %d\\n&quot;, r);\n}\n\nint main()\n{\n    int x = readNumber();\n    int y = readNumber();\n    int r = compute(x, y);\n    showResult(r);\n    return 0;\n}\n<\/code><\/pre>\n<hr \/>\n<h2>\u5341\u4e8c\u3001\u51fd\u6570\u9012\u5f52\u5165\u95e8<\/h2>\n<p>\u9012\u5f52\u662f\u4e00\u79cd\u51fd\u6570<strong>\u76f4\u63a5\u6216\u95f4\u63a5\u8c03\u7528\u81ea\u8eab<\/strong>\u7684\u7f16\u7a0b\u65b9\u5f0f\u3002\u5176\u5173\u952e\u662f\u5c06\u5927\u95ee\u9898\u5206\u89e3\u4e3a\u66f4\u5c0f\u7684\u540c\u7c7b\u5b50\u95ee\u9898\uff0c\u5e76\u8bbe\u7f6e\u7ec8\u6b62\u6761\u4ef6\u3002<\/p>\n<h3>1. \u9012\u5f52\u7684\u7ed3\u6784<\/h3>\n<p>\u9012\u5f52\u51fd\u6570\u901a\u5e38\u5305\u542b\u4e24\u90e8\u5206\uff1a<\/p>\n<ul>\n<li>\u57fa\u672c\u60c5\u51b5\uff08\u7ec8\u6b62\u6761\u4ef6\uff09\uff1a\u4e0d\u518d\u9012\u5f52\u65f6\u7684\u8fd4\u56de\u503c\u3002<\/li>\n<li>\u9012\u5f52\u60c5\u51b5\uff1a\u5c06\u95ee\u9898\u62c6\u5206\u4e3a\u89c4\u6a21\u66f4\u5c0f\u7684\u540c\u7c7b\u95ee\u9898\u3002<\/li>\n\n<\/ul>\n<p>\u5178\u578b\u793a\u4f8b\uff1a<\/p>\n<pre><code>int n = 5;\nresult = factorial(5);\nint factorial(int n)\n{\n    if (n == 0)\n        return 1;            \/\/ \u57fa\u672c\u60c5\u51b5\n    return n * factorial(n - 1);  \/\/ \u9012\u5f52\u8c03\u7528\n}\nstackoverflow \u6808\u6ea2\u51fa\n<\/code><\/pre>\n<p>result  = factorial(5);<\/p>\n<p>factorial(5) = 5 * factorial(4); = 120  = 5\uff01<\/p>\n<p>f(4) = 4 * f(3) =24<\/p>\n<p>f(3) = 3 * f(2) = 6<\/p>\n<p>f(2) = 2 * f(1) = 2<\/p>\n<p>f(1) = 1 * f(0) = 1<\/p>\n<p>f(0) = 1;<\/p>\n<p>&nbsp;<\/p>\n<p>n! = n * (n &#8211; 1)! <\/p>\n<h3>2. \u4f7f\u7528\u9012\u5f52\u7684\u5fc5\u8981\u6761\u4ef6<\/h3>\n<ul>\n<li>\u5b50\u95ee\u9898\u5fc5\u987b\u7ee7\u7eed\u5411\u7ec8\u6b62\u6761\u4ef6\u6536\u655b\u3002<\/li>\n<li>\u6bcf\u6b21\u8c03\u7528\u90fd\u5e94\u7f29\u5c0f\u95ee\u9898\u89c4\u6a21\u3002<\/li>\n<li>\u5fc5\u987b\u907f\u514d\u65e0\u9650\u9012\u5f52\u3002<\/li>\n\n<\/ul>\n<h3>3. \u7ecf\u5178\u793a\u4f8b<\/h3>\n<h4>(1) Fibonacci \u6570\u5217<\/h4>\n<pre><code>int fib(int n)\n{\n    if (n &lt;= 1)\n        return n;\n    return fib(n - 1) + fib(n - 2);\n}\n<\/code><\/pre>\n<p>1 1 2 3 5 8 13<\/p>\n<p>fib(7)<\/p>\n<p>f(7) = f(6) + f(5)<\/p>\n<p>f(6) = f(5) + f(4)<\/p>\n<h4><strong>\u5c3e\u9012\u5f52<\/strong>\uff1a<\/h4>\n<p>\u9012\u5f52\u5728\u51fd\u6570return \u7684\u65f6\u5019\u8c03\u7528<\/p>\n<h4>(2) \u9012\u5f52\u904d\u5386\u6570\u7ec4<\/h4>\n<pre><code>void printArray(int arr[], int n)\n{\n    if (n == 0)\n        return;\n    printArray(arr, n - 1);\n    printf(&quot;%d &quot;, arr[n - 1]);\n}\n<\/code><\/pre>\n<h3>4. \u9012\u5f52\u4e0e\u6808<\/h3>\n<p>\u6bcf\u6b21\u9012\u5f52\u8c03\u7528\u90fd\u4f1a\u5360\u7528\u6808\u7a7a\u95f4\u4fdd\u5b58\u73b0\u573a\uff0c\u5305\u62ec\u53c2\u6570\u4e0e\u8fd4\u56de\u5730\u5740\u3002\u6df1\u5ea6\u8fc7\u5927\u53ef\u80fd\u5bfc\u81f4\u6808\u6ea2\u51fa\u3002\u9002\u5f53\u60c5\u51b5\u4e0b\u9700\u4f7f\u7528\u8fed\u4ee3\u66ff\u4ee3\u9012\u5f52\u3002<\/p>\n<h2>\u5341\u4e09\u3001\u603b\u7ed3<\/h2>\n<p>\u672c\u8bb2\u4e49\u8986\u76d6\u51fd\u6570\u7684\u5b8c\u6574\u4f7f\u7528\u65b9\u6cd5\uff0c\u5305\u62ec\u58f0\u660e\u3001\u5b9a\u4e49\u3001\u8c03\u7528\u3001\u503c\u4f20\u9012\u673a\u5236\u3001\u9759\u6001\u53d8\u91cf\u3001\u591a\u6587\u4ef6\u7ec4\u7ec7\u7ed3\u6784\u7b49\u5185\u5bb9\uff0c\u9002\u5408\u4f5c\u4e3a\u7cfb\u7edf\u5b66\u4e60 C \u8bed\u8a00\u51fd\u6570\u7684\u53c2\u8003\u6750\u6599\u3002<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>\u4e00\u3001\u6982\u8ff0 \u51fd\u6570\u662f C \u8bed\u8a00\u7a0b\u5e8f\u7684\u57fa\u672c\u7ed3\u6784\u5355\u5143\uff0c\u7528\u4e8e\u5c01\u88c5\u53ef\u590d\u7528\u7684\u8ba1\u7b97\u903b\u8f91\u3002\u4f7f\u7528\u51fd\u6570\u80fd\u591f\u63d0\u5347\u4ee3\u7801\u6a21\u5757\u5316\u7a0b\u5ea6\u3001\u53ef\u7ef4\u62a4 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[23],"tags":[],"class_list":["post-290","post","type-post","status-publish","format-standard","hentry","category-23"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"http:\/\/4.189.252.43\/index.php\/wp-json\/wp\/v2\/posts\/290","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/4.189.252.43\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/4.189.252.43\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/4.189.252.43\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/4.189.252.43\/index.php\/wp-json\/wp\/v2\/comments?post=290"}],"version-history":[{"count":1,"href":"http:\/\/4.189.252.43\/index.php\/wp-json\/wp\/v2\/posts\/290\/revisions"}],"predecessor-version":[{"id":291,"href":"http:\/\/4.189.252.43\/index.php\/wp-json\/wp\/v2\/posts\/290\/revisions\/291"}],"wp:attachment":[{"href":"http:\/\/4.189.252.43\/index.php\/wp-json\/wp\/v2\/media?parent=290"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/4.189.252.43\/index.php\/wp-json\/wp\/v2\/categories?post=290"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/4.189.252.43\/index.php\/wp-json\/wp\/v2\/tags?post=290"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}