Electric Vehicle (EV) Foundation Training Cou ...
- 1k Enrolled Learners
- Weekend/Weekday
- Live Class
C Programming Interview Questions have become a crucial part of the interview process in almost all MNC companies. This article is mainly focused on the most asked and the latest updated questions that are appearing in most of the current interviews. You will also get a mix of Basic to Advanced C Programming Interview Questions and Answers in this article.
Ans: The Datatypes in C Language are broadly classified into 4 categories. They are as follows:
The Basic Datatypes supported in C Language are as follows:
Ans: A Pointer in C Programming is used to point the memory location of an existing variable. In case if that particular variable is deleted and the Pointer is still pointing to the same memory location, then that particular pointer variable is called as a Dangling Pointer Variable.
Ans: Scope of the variable can be defined as the part of the code area where the variables declared in the program can be accessed directly. In C, all identifiers are lexically (or statically) scoped.
Ans: The variables and functions that are declared using the keyword Static are considered as Static Variable and Static Functions. The variables declared using Static keyword will have their scope restricted to the function in which they are declared.
Ans: calloc() and malloc() are memory dynamic memory allocating functions. The only difference between them is that calloc() will load all the assigned memory locations with value 0 but malloc() will not.
Ans: Break Control statement is valid to be used inside a loop and Switch control statements.
Ans: To store a negative integer, we need to follow the following steps. Calculate the two’s complement of the same positive integer.
Eg: 1011 (-5)
Step-1 − One’s complement of 5: 1010
Step-2 − Add 1 to above, giving 1011, which is -5
Ans: The Parameters which are sent from main function to the subdivided function are called as Actual Parameters and the parameters which are declared a the Subdivided function end are called as Formal Parameters.
Ans: The program will be compiled but will not be executed. To execute any C program, main() is required.
Ans: When a data member of one structure is referred by the data member of another function, then the structure is called a Nested Structure.
Ans: Keywords, Constants, Special Symbols, Strings, Operators, Identifiers used in C program are referred to as C Tokens.
Ans: A Preprocessor Directive is considered as a built-in predefined function or macro that acts as a directive to the compiler and it gets executed before the actual C Program is executed.
In case you are facing any challenges with these C Programming Interview Questions, please write your problems in the comment section below.
Ans: C introduced many core concepts and data structures like arrays, lists, functions, strings, etc. Many languages designed after C are designed on the basis of C Language. Hence, it is considered as the mother of all languages.
Ans:
Ans: printf() is used to print the values on the screen. To print certain values, and on the other hand, scanf() is used to scan the values. We need an appropriate datatype format specifier for both printing and scanning purposes. For example,
Ans. The array is a simple data structure that stores multiple elements of the same datatype in a reserved and sequential manner. There are three types of arrays, namely,
Ans: The Symbol mentioned is called a Null Character. It is considered as the terminating character used in strings to notify the end of the string to the compiler.
Ans: Compiler is used in C Language and it translates the complete code into the Machine Code in one shot. On the other hand, Interpreter is used in Java Programming Langauge and other high-end programming languages. It is designed to compile code in line by line fashion.
Ans: No, Integer datatype will support the range between -32768 and 32767. Any value exceeding that will not be stored. We can either use float or long int.
This Edureka video on 𝐓𝐨𝐩 𝟏𝟎 𝐓𝐞𝐜𝐡𝐧𝐨𝐥𝐨𝐠𝐢𝐞𝐬 𝐭𝐨 𝐋𝐞𝐚𝐫𝐧 𝐢𝐧 𝟐𝟎𝟐𝟒 will introduce you to all the popular and trending technologies in the market which you should focus on in 2024. You need to learn these trending technologies for a successful career in 2024.
Ans: A function in C language is declared as follows,
return_type function_name(formal parameter list) { Function_Body; }
Ans: Dynamic Memory Allocation is the process of allocating memory to the program and its variables in runtime. Dynamic Memory Allocation process involves three functions for allocating memory and one function to free the used memory.
malloc() – Allocates memory
Syntax:
ptr = (cast-type*) malloc(byte-size);
calloc() – Allocates memory
Syntax:
ptr = (cast-type*)calloc(n, element-size);
realloc() – Allocates memory
Syntax:
ptr = realloc(ptr, newsize);
free() – Deallocates the used memory
Syntax:
free(ptr);
Ans: A Pointer in C Programming is used to point the memory location of an existing variable. In case if that particular variable is deleted and the Pointer is still pointing to the same memory location, then that particular pointer variable is called as a Dangling Pointer Variable.
Ans: We cannot use & on constants and on a variable which is declared using the register storage class.
Ans: Structure is defined as a user-defined data type that is designed to store multiple data members of the different data types as a single unit. A structure will consume the memory equal to the summation of all the data members.
struct employee { char name[10]; int age; }e1; int main() { printf("Enter the name"); scanf("%s",e1.name); printf("n"); printf("Enter the age"); scanf("%d",&e1.age); printf("n"); printf("Name and age of the employee: %s,%d",e1.name,e1.age); return 0; }
Ans:
Factor | Call by Value | Call by Reference |
Safety | Actual arguments cannot be changed and remain safe | Operations are performed on actual arguments, hence not safe |
Memory Location | Separate memory locations are created for actual and formal arguments | Actual and Formal arguments share the same memory space. |
Arguments | Copy of actual arguments are sent | Actual arguments are passed |
//Example of Call by Value method
#include<stdio.h> void change(int,int); int main() { int a=25,b=50; change(a,b); printf("The value assigned to a is: %d",a); printf("n"); printf("The value assigned to of b is: %d",b); return 0; } void change(int x,int y) { x=100; y=200; }
//Output
The value assigned to of a is: 25
The value assigned to of b is: 50
//Example of Call by Reference method
#include<stdio.h> void change(int*,int*); int main() { int a=25,b=50; change(&a,&b); printf("The value assigned to a is: %d",a); printf("n"); printf("The value assigned to b is: %d",b); return 0; } void change(int *x,int *y) { *x=100; *y=200; }
//Output
The value assigned to a is: 100
The value assigned to b is: 200
In case you are facing any challenges with these C Programming Interview Questions, please write your problems in the comment section below.
Ans: Both the functions are designed to read characters from the keyboard and the only difference is that
getch(): reads characters from the keyboard but it does not use any buffers. Hence, data is not displayed on the screen.
getche(): reads characters from the keyboard and it uses a buffer. Hence, data is displayed on the screen.
//Example
#include<stdio.h> #include<conio.h> int main() { char ch; printf("Please enter a character "); ch=getch(); printf("nYour entered character is %c",ch); printf("nPlease enter another character "); ch=getche(); printf("nYour new character is %c",ch); return 0; }
//Output
Please enter a character
Your entered character is x
Please enter another character z
Your new character is z
Ans. toupper() is a function designed to convert lowercase words/characters into upper case.
//Example
#include<stdio.h> #include<ctype.h> int main() { char c; c=a; printf("%c after conversions %c", c, toupper(c)); c=B; printf("%c after conversions %c", c, toupper(c));
//Output:
a after conversions A
B after conversions B
Ans: Random numbers in C Language can be generated as follows:
#include<stdio.h> #include<stdlib.h> int main() { int a,b; for(a=1;a<=10;a++) { b=rand(); printf("%dn",b); } return 0; }
//Output
1987384758
2057844389
3475398489
2247357398
1435983905
Ans: It is possible to create a new header file. Create a file with function prototypes that need to be used in the program. Include the file in the ‘#include’ section in its name.
Ans: Memory Leak can be defined as a situation where programmer allocates dynamic memory to the program but fails to free or delete the used memory after the completion of the code. This is harmful if daemons and servers are included in the program.
#include<stdio.h> #include<stdlib.h> int main() { int* ptr; int n, i, sum = 0; n = 5; printf("Enter the number of elements: %dn", n); ptr = (int*)malloc(n * sizeof(int)); if (ptr == NULL) { printf("Memory not allocated.n"); exit(0); } else { printf("Memory successfully allocated using malloc.n"); for (i = 0; i<= n; ++i) { ptr[i] = i + 1; } printf("The elements of the array are: "); for (i = 0; i<=n; ++i) { printf("%d, ", ptr[i]); } } return 0; }
//Output
Enter the number of elements: 5
Memory successfully allocated using malloc.
The elements of the array are: 1, 2, 3, 4, 5,
In case you are facing any challenges with these C Programming Interview Questions, please write your problems in the comment section below.
Ans: A local static variable is a variable whose life doesn’t end with a function call where it is declared. It extends for the lifetime of the complete program. All calls to the function share the same copy of local static variables.
#include<stdio.h> void fun() { static int x; printf("%d ", x); x = x + 1; } int main() { fun(); fun(); return 0; }
//Output
0 1
Ans: If the Header File is declared using < > then the compiler searches for the header file within the Built-in Path. If the Header File is declared using ” ” then the compiler will search for the Header File in the current working directory and if not found then it searches for the file in other locations.
Ans: We use Register Storage Specifier if a certain variable is used very frequently. This helps the compiler to locate the variable as the variable will be declared in one of the CPU registers.
Ans: x++; is the most efficient statement as it just a single instruction to the compiler while the other is not.
Ans: Yes, Same variable name can be declared to the variables with different variable scopes as the following example.
int var; void function() { int variable; } int main() { int variable; }
Ans: Arrow Operator( -> ) can be used to access the data members of a Union if the Union Variable is declared as a pointer variable.
Ans: Basic File Handling Techniques in C, provide the basic functionalities that user can perform against files in the system.
Function | Operation |
fopen() | To Open a File |
fclose() | To Close a File |
fgets() | To Read a File |
fprint() | To Write into a File |
In case you are facing any challenges with these C Programming Interview Questions, please write your problems in the comment section below.
Ans: The different storage specifiers available in C Language are as follows:
Ans: Typecasting is a process of converting one data type into another is known as typecasting. If we want to store the floating type value to an int type, then we will convert the data type into another data type explicitly.
Syntax:
(type_name) expression;
Ans:
#include&lt;stdio.h&gt; void main() { if(printf("hello world")){} }
//Output:
hello world
Ans:
#include&lt;stdio.h&gt; #include&lt;conio.h&gt; main() { int a=10, b=20; clrscr(); printf("Before swapping a=%d b=%d",a,b); a=a+b; b=a-b; a=a-b; printf("nAfter swapping a=%d b=%d",a,b); getch(); }
//Output
Before swapping a=10 b=20
After swapping a=20 b=10
Q42. How can you print a string with the symbol % in it?
Ans: There is no escape sequence provided for the symbol % in C. So, to print % we should use ‘%%’ as shown below.
printf(&ldquo;there are 90%% chances of rain tonight&rdquo;);
1
12
123
1234
12345
Ans: To print the above pattern, the following code can be used.
#include&lt;stdio.h&gt; int main() { for(i=1;i&lt;=5;1++) { for(j=1;j&lt;=5;j++) { print("%d",j); } printf("n"); } return 0; }
Ans: The following points explain the Pragma Directive.
Ans: The following program will help you to remove duplicates from an array.
#include &lt;stdio.h&gt; int main() { int n, a[100], b[100], calc = 0, i, j,count; printf("Enter no. of elements in array.n"); scanf("%d", &amp;n); printf("Enter %d integersn", n); for (i = 0; i &lt; n; i++) scanf("%d", &amp;a[i]); for (i = 0; i&lt;n; i++) { for (j = 0; j&lt;calc; j++) { if(a[i] == b[j]) break; } if (j== calc) { b[count] = a[i]; calc++; } } printf("Array obtained after removing duplicate elementsn"); for (i = 0; i&lt;calc; i++) { printf("%dn", b[i]); } return 0; }
//Output
Enter no. of elements in array. 5
Enter 5 integers
12
11
11
10
4
Array obtained after removing duplicate elements
12
11
10
4
Ans: Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order. The pass through the list is repeated until the list is sorted.
The following code executes Bubble Sort.
int main() { int array[100], n, i, j, swap; printf("Enter number of elementsn"); scanf("%d", &amp;n); printf("Enter %d Numbers:n", n); for(i = 0; i&lt;n; i++) scanf("%d", &amp;array[i]); for(i = 0 ; i&lt;n - 1; i++) { for(j = 0 ; j &lt; n-i-1; j++) { if(array[j]&gt;array[j+1]) { swap=array[j]; array[j]=array[j+1]; array[j+1]=swap; } } } printf("Sorted Array:n"); for(i = 0; i &lt; n; i++) printf("%dn", array[i]); return 0; }
Ans: Round-robin Algorithm is one of the algorithms employed by process and network schedulers in computing in order to evenly distribute resources in the system.
The following code will execute Round Robin Scheduling
#include&lt;stdio.h&gt; int main() { int i, limit, total = 0, x, counter = 0, time_quantum; int wait_time = 0, turnaround_time = 0, arrival_time[10], burst_time[10], temp[10]; float average_wait_time, average_turnaround_time; printf("nEnter Total Number of Processes:t"); scanf("%d", &amp;limit); x = limit; for(i = 0; i&lt;limit; i++) { printf("nEnter Details of Process[%d]n", i + 1); printf("Arrival Time:t"); scanf("%d", &amp;arrival_time[i]); printf("Burst Time:t"); scanf("%d", &amp;burst_time[i]); temp[i] = burst_time[i]; } printf("nEnter Time Quantum:t"); scanf("%d", &amp;time_quantum); printf("nProcess IDttBurst Timet Turnaround Timet Waiting Timen"); for(total = 0, i = 0; x != 0;) { if(temp[i] &lt;= time_quantum &amp;&amp; temp[i] &gt; 0) { total = total + temp[i]; temp[i] = 0; counter = 1; } else if(temp[i]&gt;0) { temp[i] = temp[i] - time_quantum; total = total + time_quantum; } if(temp[i] == 0 &amp;&amp; counter == 1) { x--; printf("nProcess[%d]tt%dtt %dttt %d", i + 1, burst_time[i], total - arrival_time[i], total - arrival_time[i] - burst_time[i]); wait_time = wait_time + total - arrival_time[i] - burst_time[i]; turnaround_time = turnaround_time + total - arrival_time[i]; counter = 0; } if(i == limit - 1) { i = 0; } else if(arrival_time[i + 1] &lt;= total) { i++; } else { i = 0; } } average_wait_time = wait_time * 1.0 / limit; average_turnaround_time = turnaround_time * 1.0 / limit; printf("nnAverage Waiting Time:t%f", average_wait_time); printf("nAvg Turnaround Time:t%fn", average_turnaround_time); return 0; }
//Output
In case you are facing any challenges with these C Programming Interview Questions, please write your problems in the comment section below.
Ans: The answer can be explained through the following points,
Ans: The Limitations of scanf() are as follows:
Ans: The differences between macros and functions can be explained as follows:
Ans: No. It is not possible in C. It is always the most local variable that gets preference.
With this, we come to an end of this “C Programming Interview Questions” article. I hope you have understood the importance of C Programming.
Now that you have understood the basics of Programming in C, check out the training provided by Edureka on many technologies like Java, Spring, and many more, a trusted online learning company with a network of more than 250,000 satisfied learners spread across the globe
Got a question for us? Mention it in the comments section of this “C Programming Interview Questions” blog and we will get back to you as soon as possible.
Related Posts
12 Tips to handle your first campus interview with a Software Company
edureka.co