C Programming Interview Questions - PART 4

preview_player
Показать описание
List of Popular c interview questions asked during technical interview for C programmers.
C Programming Language is the most popular computer language and most used programming language till now. It is very simple and elegant language.

Every programmer should and must have learnt C whether it is a Java or C# expert, Because all these languages are derived from C. In this tutorial you will learn all the basic concept of C programming language. Every section in this tutorial is downloadable for offline learning. Topics will be added additional to the tutorial every week or the other which cover more topics and with advanced topics.
This is we will Learn Data Types, Arithmetic, If, Switch, Ternary Operator, Arrays, For Loop, While Loop, Do While Loop, User Input, Strings, Functions, Recursion, File I/O, Exceptions, Pointers, Reference Operator , memory management, pre-processors and more.

#Ctutorialforbeginners #Ctutorial #Cprogramming #Cprogrammingtutorial #Cbasicsforbeginners

★★★Top Online Courses From ProgrammingKnowledge ★★★

★★★ Online Courses to learn ★★★

DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This help support the channel and allows us to continue to make videos like this. Thank you for the support!
Рекомендации по теме
Комментарии
Автор

8:56 is completely wrong. It is possible to enter "multiword" string using scanf. For instance:

#include <stdio.h>
int main(void)
{
char fullname[50+1];
puts("Enter your full name:");
scanf("%50[^\n]", fullname);
printf("Hello %s\n", fullname);
return 0;
}

On the other hand, the _gets_ function should never be used. Never! _gets_ does not constrain the amount of data it reads, and is thus vulnerable to buffer overruns. It was officially removed from the C Standard Library by the 2011 standard.

lxerlx
Автор

Thank you, good questions and explanation 😊

rmm