{"id":2489,"date":"2022-08-03T16:11:54","date_gmt":"2022-08-03T10:41:54","guid":{"rendered":"https:\/\/codequotient.com\/blog\/?p=2489"},"modified":"2024-02-14T17:52:27","modified_gmt":"2024-02-14T12:22:27","slug":"c-interview-questions-first-interview","status":"publish","type":"post","link":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/","title":{"rendered":"Basic C Interview Questions You Need to Know for Your First Interview"},"content":{"rendered":"<p>As per <a href=\"https:\/\/www.statista.com\/statistics\/793628\/worldwide-developer-survey-most-used-languages\/\">Statista<\/a>, C is used by more than 19% of all developers worldwide, which makes it an excellent choice for those who want to work as software developers.<\/p>\n<p>C, one of the earliest languages, is widely regarded as the basis for all modern programming languages.<\/p>\n<p>Hence, learning C helps to clear up many essential programming concepts for learners that prepare them for their jobs to solve real-world problems. Before that, you must crack the technical rounds of interviews first.<\/p>\n<p>Read on if you are looking for some basic C interview questions to understand your grasp of the language and nail those interviews.<\/p>\n<p><strong>Do you want to start your software engineering journey but are unsure what to begin with?<\/strong> <a href=\"https:\/\/codequotient.com\/blog\/career-programming-insights-codequotients-founder\/\">Click here<\/a>.<\/p>\n<h2><b>C Interview Questions That Everyone Must Know:<\/b><\/h2>\n<p><img fetchpriority=\"high\" decoding=\"async\" class=\"aligncenter size-full wp-image-2491\" src=\"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/08\/Basic-C-Interview-Questions-For-First-Interview.jpg\" alt=\"Basic-C-Interview-Questions-For-First-Interview\" width=\"1480\" height=\"774\" \/><\/p>\n<h3><b>1. Is C known as a mid-level programming language? Why?<\/b><\/h3>\n<p>C possesses traits of both lower-level (assembly level) and higher-level modern languages. Hence, C is frequently referred to as a middle-level language. A user may develop an operating system or a video game using the C language.<\/p>\n<h3><b>2. Describe some features of the C language that make it unique.<\/b><\/h3>\n<p>C is simple, efficient, portable, and machine independent. Known as a mid-level &amp; structured Programming Language, it is extensible, has a function-rich library &amp; dynamic memory management, and allows the use of pointers.<\/p>\n<h3><b>3. What is a token in C? How many types of tokens available in C?<\/b><\/h3>\n<p>A token is the most fundamental building block in the C language. Just like we cannot create words without alphabets, we cannot write C programs without using tokens. Six different types of tokens are available in C- Identifiers, Keywords, Constants, Operators, Special Characters, and Strings.<\/p>\n<h3><b>4. What is the use of printf() and scanf() functions and format specifiers?<\/b><\/h3>\n<p>printf(), as the name suggests, is used to print or display the program&#8217;s output. scanf() is used to get inputs from the user via the keyboard during or before a program\u2019s execution.<\/p>\n<p>Format specifiers are used to defining a specific type of input or output value. Some examples are <b>%d<\/b> (integers), <b>%s <\/b>(string), <b>%c <\/b>(character), <b>%f <\/b>(float).<\/p>\n<p>Read about Baljeet\u2019s inspirational journey <a href=\"https:\/\/codequotient.com\/blog\/learner-software-engineer-baljeets-journey\/\">here<\/a> and see what it takes to go from a learner to a software engineer.<\/p>\n<h3><b>5. Explain the output of the expression 5[&#8220;abxdef&#8221;].<\/b><\/h3>\n<p>The correct answer would be \u2018f\u2019, as the string \u2018abxdef\u2019 is an array, and the expression asks the output of the element in the fifth place of the variety. Since C starts counting the elements from Zero instead of One, \u2018a\u2019 is the zeroth element, \u2018b\u2019 is the first, \u2018x\u2019 is the second, and so on\u2026 which means \u2018f\u2019 is the fifth element, and hence listed as the result.<\/p>\n<h3><b>6. What do you mean by a \u2018built-in function\u2019 in C?<\/b><\/h3>\n<p>Built-in functions, also known as library functions in C, are provided by default within the language to assist the developer in coding specific repeated tasks by using these functions instead of writing the whole code for each task separately.<\/p>\n<p>Some examples of built-in functions in C are scanf(), printf(), strcpy, strlwr, strcmp, strlen, strcat, etc.<\/p>\n<h3><b>7. Why doesn\u2019t C support function overloading?<\/b><\/h3>\n<p>After code in C is compiled, the symbol and function names need to be intact in the object code. Introducing function overloading can result in function name clashes, resulting in program execution failure. One way to avoid this is by using the name mangling as a preventive measure.<\/p>\n<h3><b>8. What is the difference between global int and static int declaration?<\/b><\/h3>\n<p>The scope is the difference here. A genuinely global variable will have a global scope and be accessible anywhere in the program; however, if you\u2019d like it to be visible in other modules, you will need to use \u2018extern int global_temp\u2019 in different source files in case of a multi-file project.<\/p>\n<p>Whereas a static variable has a local scope, its contents are not segmented within the memory stack. This means it can have less visibility than the global scope; however, it is still located in the \u2018.bss\u2019 segment of the compiled binary.<\/p>\n<h3><b>9. What do you mean by a \u2018pointer\u2019 in C?<\/b><\/h3>\n<p>As the name suggests, a pointer is simply a variable that stores the address of another variable and points to it. The variable&#8217;s value is stored within the variable, whereas the address can be stored in the pointer variable and used in multiple places throughout the program.<\/p>\n<h3><b>10. Out of n++ and n+1, which will execute faster and why?<\/b><\/h3>\n<p>The answer is <b>n++<\/b> since it is a unary operation and needs just one variable, whereas n+1 is a binary operation and adds logical calculation overhead, which takes more time and delays program execution.<\/p>\n<p>However, in modern machines, many factors such as processor speed, compiler efficiency, and code compaction can play a considerable role in execution. They will usually result in similar execution times for both operations.<\/p>\n<p>If you\u2019d like to understand the difference between a compiler and an interpreter, <a href=\"https:\/\/codequotient.com\/blog\/difference-compiler-interpreter-java\/\">Click here<\/a>.<\/p>\n<h2><b>In The End<\/b><\/h2>\n<p>The C interview questions listed above cover some of the essential but important aspects of the C language, which may very well be asked in a C interview to test the candidate\u2019s knowledge. We recommend you focus on understanding the concepts rather than memorising the answers. The interviewers want to know about your understanding of the subject after all.<\/p>\n<p>If you\u2019d like to become a well-rounded developer with good knowledge of programming basics and hands-on experience. In that case, <a href=\"https:\/\/codequotient.com\/\">CodeQuotient<\/a> offers their industry-renowned <a href=\"https:\/\/codequotient.com\/supercoders-program\">SuperCoders Program<\/a>, which is a three-month online, full-stack development course that focuses on project-based learning to help you become a knowledgable and skilled programmer. Give your career and learning a big boost with CodeQuotient!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As per Statista, C is used by more than 19% of all developers worldwide, which makes it an excellent choice for those who want to work as software developers. C, one of the earliest languages, is widely regarded as the basis for all modern programming languages. Hence, learning C helps to clear up many essential&#8230;<\/p>\n","protected":false},"author":1,"featured_media":2490,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[131],"tags":[15,29,140,26,21,25],"class_list":{"0":"post-2489","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","6":"hentry","7":"category-software-engineering-bootcamp","8":"tag-coding-jobs","9":"tag-developer","10":"tag-interview-preparation","11":"tag-tech-hiring","12":"tag-tech-interviews","13":"tag-tech-recruitment","14":"nt-post-class","15":"","18":"excerpt-none"},"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Basic C Interview Questions You Need to Know for Your First Interview - CodeQuotient<\/title>\n<meta name=\"description\" content=\"Nervous about your first C interview? Worry not! Just go through these basic C interview questions to prepare yourself and ace it!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Basic C Interview Questions You Need to Know for Your First Interview - CodeQuotient\" \/>\n<meta property=\"og:description\" content=\"Nervous about your first C interview? Worry not! Just go through these basic C interview questions to prepare yourself and ace it!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeQuotient\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codequotient\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-03T10:41:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-14T12:22:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/08\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1480\" \/>\n\t<meta property=\"og:image:height\" content=\"774\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Team CodeQuotient\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codequotient\" \/>\n<meta name=\"twitter:site\" content=\"@codequotient\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Team CodeQuotient\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/\"},\"author\":{\"name\":\"Team CodeQuotient\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#\\\/schema\\\/person\\\/d84614276ce2ccc8578c447a515c02f8\"},\"headline\":\"Basic C Interview Questions You Need to Know for Your First Interview\",\"datePublished\":\"2022-08-03T10:41:54+00:00\",\"dateModified\":\"2024-02-14T12:22:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/\"},\"wordCount\":952,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg\",\"keywords\":[\"Coding Jobs\",\"Developer\",\"Interview Preparation\",\"Tech Hiring\",\"Tech Interviews\",\"Tech Recruitment\"],\"articleSection\":[\"Software Engineering Bootcamp\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/\",\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/\",\"name\":\"Basic C Interview Questions You Need to Know for Your First Interview - CodeQuotient\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg\",\"datePublished\":\"2022-08-03T10:41:54+00:00\",\"dateModified\":\"2024-02-14T12:22:27+00:00\",\"description\":\"Nervous about your first C interview? Worry not! Just go through these basic C interview questions to prepare yourself and ace it!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg\",\"contentUrl\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg\",\"width\":1480,\"height\":774,\"caption\":\"Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/c-interview-questions-first-interview\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Basic C Interview Questions You Need to Know for Your First Interview\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/\",\"name\":\"CodeQuotient\",\"description\":\"Resources to be a better programmer\",\"publisher\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#organization\",\"name\":\"CodeQuotient\",\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/codequotient-logo.png\",\"contentUrl\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/codequotient-logo.png\",\"width\":238,\"height\":104,\"caption\":\"CodeQuotient\"},\"image\":{\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/codequotient\",\"https:\\\/\\\/x.com\\\/codequotient\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/codequotient\",\"https:\\\/\\\/www.instagram.com\\\/codequotient\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/#\\\/schema\\\/person\\\/d84614276ce2ccc8578c447a515c02f8\",\"name\":\"Team CodeQuotient\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g\",\"caption\":\"Team CodeQuotient\"},\"sameAs\":[\"https:\\\/\\\/blog.codequotient.com\"],\"url\":\"https:\\\/\\\/codequotient.com\\\/blog\\\/author\\\/codequotient\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Basic C Interview Questions You Need to Know for Your First Interview - CodeQuotient","description":"Nervous about your first C interview? Worry not! Just go through these basic C interview questions to prepare yourself and ace it!","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:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/","og_locale":"en_GB","og_type":"article","og_title":"Basic C Interview Questions You Need to Know for Your First Interview - CodeQuotient","og_description":"Nervous about your first C interview? Worry not! Just go through these basic C interview questions to prepare yourself and ace it!","og_url":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/","og_site_name":"CodeQuotient","article_publisher":"https:\/\/www.facebook.com\/codequotient","article_published_time":"2022-08-03T10:41:54+00:00","article_modified_time":"2024-02-14T12:22:27+00:00","og_image":[{"width":1480,"height":774,"url":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/08\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg","type":"image\/jpeg"}],"author":"Team CodeQuotient","twitter_card":"summary_large_image","twitter_creator":"@codequotient","twitter_site":"@codequotient","twitter_misc":{"Written by":"Team CodeQuotient","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/#article","isPartOf":{"@id":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/"},"author":{"name":"Team CodeQuotient","@id":"https:\/\/codequotient.com\/blog\/#\/schema\/person\/d84614276ce2ccc8578c447a515c02f8"},"headline":"Basic C Interview Questions You Need to Know for Your First Interview","datePublished":"2022-08-03T10:41:54+00:00","dateModified":"2024-02-14T12:22:27+00:00","mainEntityOfPage":{"@id":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/"},"wordCount":952,"commentCount":0,"publisher":{"@id":"https:\/\/codequotient.com\/blog\/#organization"},"image":{"@id":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/#primaryimage"},"thumbnailUrl":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/08\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg","keywords":["Coding Jobs","Developer","Interview Preparation","Tech Hiring","Tech Interviews","Tech Recruitment"],"articleSection":["Software Engineering Bootcamp"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/","url":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/","name":"Basic C Interview Questions You Need to Know for Your First Interview - CodeQuotient","isPartOf":{"@id":"https:\/\/codequotient.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/#primaryimage"},"image":{"@id":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/#primaryimage"},"thumbnailUrl":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/08\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg","datePublished":"2022-08-03T10:41:54+00:00","dateModified":"2024-02-14T12:22:27+00:00","description":"Nervous about your first C interview? Worry not! Just go through these basic C interview questions to prepare yourself and ace it!","breadcrumb":{"@id":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/#primaryimage","url":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/08\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg","contentUrl":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/08\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg","width":1480,"height":774,"caption":"Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview"},{"@type":"BreadcrumbList","@id":"https:\/\/codequotient.com\/blog\/c-interview-questions-first-interview\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codequotient.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Basic C Interview Questions You Need to Know for Your First Interview"}]},{"@type":"WebSite","@id":"https:\/\/codequotient.com\/blog\/#website","url":"https:\/\/codequotient.com\/blog\/","name":"CodeQuotient","description":"Resources to be a better programmer","publisher":{"@id":"https:\/\/codequotient.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codequotient.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/codequotient.com\/blog\/#organization","name":"CodeQuotient","url":"https:\/\/codequotient.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/codequotient.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2020\/12\/codequotient-logo.png","contentUrl":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2020\/12\/codequotient-logo.png","width":238,"height":104,"caption":"CodeQuotient"},"image":{"@id":"https:\/\/codequotient.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codequotient","https:\/\/x.com\/codequotient","https:\/\/www.linkedin.com\/company\/codequotient","https:\/\/www.instagram.com\/codequotient\/"]},{"@type":"Person","@id":"https:\/\/codequotient.com\/blog\/#\/schema\/person\/d84614276ce2ccc8578c447a515c02f8","name":"Team CodeQuotient","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/612e6d66a89f62c087fb5a3e21cc59e53d1478a67562e8d08ec755a92ada292b?s=96&d=mm&r=g","caption":"Team CodeQuotient"},"sameAs":["https:\/\/blog.codequotient.com"],"url":"https:\/\/codequotient.com\/blog\/author\/codequotient\/"}]}},"featured_image_src":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/08\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg","featured_image_src_square":"https:\/\/codequotient.com\/blog\/wp-content\/uploads\/2022\/08\/Basic-C-Interview-Questions-You-Need-to-Know-for-Your-Interview.jpg","author_info":{"display_name":"Team CodeQuotient","author_link":"https:\/\/codequotient.com\/blog\/author\/codequotient\/"},"_links":{"self":[{"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/posts\/2489","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/comments?post=2489"}],"version-history":[{"count":2,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/posts\/2489\/revisions"}],"predecessor-version":[{"id":2493,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/posts\/2489\/revisions\/2493"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/media\/2490"}],"wp:attachment":[{"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/media?parent=2489"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/categories?post=2489"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codequotient.com\/blog\/wp-json\/wp\/v2\/tags?post=2489"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}