Learn C Language ) – Iso/Iec Jtc1/Sc22/Wg14

C is a procedural programming language. It was initially developed by Dennis Ritchie as a system programming language to write operating system. The main features of C language include low-level access to memory, simple set of keywords, and clean style, these features make C language suitable for system programming like operating system or compiler development.Recent Articles on C !C Output & Multiple Choice QuestionsBasics, Variable Declaration, Definition and Scope, Data Types, Storage Classes, Input/Output, Operators, Preprocessor, Array & Strings, Control Statements, Functions, Pointers, Enum, Struct and Union, Memory Management, File Handling, Puzzles, Misc, C Language Interview Questions, Multiple Choice Questions

Đang xem: C language

C Language IntroductionC Programming Language Standardint (1 sign bit + 31 data bits) keyword in CIs it fine to write “void main()” or “main()” in C/C++?Difference between “int main()” and “int main(void)” in C/C++?Macros and Preprocessors in CCompiling a C program:- Behind the ScenesBenefits of C over other languagesProgram error signalsEscape sequences in CLine Slicing in CC/ C++ Tokens
Variables and Keywords in CHow are variables scoped in C – Static or Dynamic?Scope rules in CHow Linkers Resolve Multiply Defined Global Symbols?Quiz on Variable Declaration and ScopeComplicated declarations in CRedeclaration of global variable in CInternal and External LinkageDeclare variable as constantWhy variables doesn’t start with numbersRedeclaration of global variablesInitialization of global and static variables
Storage Classes in CStatic Variables in CUnderstanding “extern” keyword in CWhat are the default values of static variables in C?Understanding “volatile” qualifier in CConst Qualifier in CInitialization of static variables in CUnderstanding “register” keyword in CQuiz on Storage Classes in CUnderstanding volatile qualifier in C- Set 1
Returned values of printf() and scanf()What is return type of getchar(), fgetc() and getc() ?Scansets in Cputs() vs printf() for printing a stringWhat is use of %n in printf() ?How to print % using printf()?Quiz on Input Output in CDifference between printf, sprintf and fprintf?Difference between getc(), getchar(), getch() and getche()Difference between %d and %i format specifierUse of fflush(stdin) in CClearing input buffer in C/C++scanf() and fscanf() in Cgetchar_unlocked() in CProblem with scanf()Differentiate printable and control characterrand() and srand() in C/C++
Introduction to operators in C and Arithmetic OperatorsRelational and Logical Operators in CBitwise Operators in COperator Precedence and Associativity in CEvaluation order of operandsComma in C and C++sizeof operator in COperands for sizeof operatorA comma operator questionResult of comma operator as l-value in C and C++Order of operands for logical operatorsIncrement (Decrement) operators require L-value ExpressionPrecedence of postfix ++ and prefix ++ in C/C++Modulus on Negative NumbersC/C++ Ternary Operator – Some Interesting ObservationsPre-increment (or pre-decrement) in C++Difference between ++*p, *p++ and *++pResults of comparison operations in C and C++To find sum of two numbers without using any operatorSequence Points in CExecution of printf with ++ operatorsAnything written in sizeof() is never executedDifference between strlen() and sizeof()Stringizing and Token-pasting operator
Write a C macro PRINT(x) which prints xVariable length arguments for MacrosMultiline macros in CCRASH() macro – interpretationThe OFFSETOF() macro,Branch prediction macros in GCCDiffference between #define and const in C?A C Programming Language PuzzleWhat’s difference between header files “stdio.h” and “stdlib.h” ?How to print a variable name in C?Constants in CHow a Preprocessor worksPreprocessor Directives : Behind the scene-1Preprocessor Directives : Behind the scene-2isgraph() library functionwrite your own header file in Cdifftime() library functiontmpnam() library function_Generic keyword in Cmath.h library functionstypedef versus #define in Cstrftime() library functionexec family of functions
Introduction to Arrays in C LanguageStrings in C LanguageProperties of array in C LanguageDo not use sizeof for array parametersInitialization of variables sized arrays in CAre array members deeply copied?What is the difference between single quoted and double quoted declaration of char array?Initialization of a multidimensional arrays in C/C++Write one line functions for strcat() and strcmp()What’s difference between char s<> and char *s in Cgets() is risky to use!C function to Swap strings,Storage for Strings in CDifference between array and pointerHow to dynamically allocate a 2D array in C?How to pass a 2D array as a parameter in C?How to write long strings in Multi-lines C/C++?What are the data types for which it is not possible to create an array?Variable Length Arrays in C and C++Short hand array notationAccessing array out of boundsstrcpy() in C/C++strcmp() in C/C++strdup() and strdndup() in C/C++Pass an array by valueReverse a string in C/C++strpbrk() in Cstrcoll() in C/C++ispunct() in Cstrspn() in Cisalpha() and isdigit() in C/C++
What should be data type of case labels of switch statement in C?For Versus WhileA nested loop puzzleswitch statement in CDifference between while(1) and while(0)goto statementContinue StatementBreak StatementUsing range in switch case

XEM THÊM:  món ăn trưa hà nội

Xem thêm: Giá Trà Sữa Gong Cha ” Giá Tốt Tháng 3,, 2021, Trà Sữa Gong Cha

Functions in CImportance of function prototype in CFunctions that are executed before and after main() in Creturn statement vs exit() in main()How to Count Variable Numbers of Arguments in C?,What is evaluation order of function parameters in C?Does C support function overloading?How can we return multiple values from a function?What is the purpose of a function prototype?Static functions in Cexit(), abort() and assert()Implicit return type int in CWhat happens when a function is called before its declaration in C?_Noreturn function specifier in Cexit() vs _Exit()__func__ identifier in CCallback function in CNested functions in CParameter Passing Techniquespow() function in Ctolower() function in Ctime() function in C
Introduction to pointers in C and C++Double Pointer (Pointer to Pointer) in CWhy C treats array parameters as pointers?Output of the program | Dereference, Reference, Dereference, ReferenceDangling, Void , Null and Wild PointersAn Uncommon representation of array elementsHow to declare a pointer to a function?Pointer vs Array in Cvoid pointer in CNULL pointer in C !Function Pointer in Cnear, far and huge pointersGeneric Linked List in Crestrict keyword in Cconst char *p, char * const p and const char * const pPointer to an Array
Enum in CStructures in CUnion in CStruct HackStructure Member Alignment, Padding and Data PackingOperations on struct variables in CBit Fields in CStructure Sorting (By Multiple Rules) in C++Flexible array members in structureDifference between Structure and UnionDifference between C structures and C++ structuresAnonymous Union and Structure in CCompound Literals in C
Memory Layout of C Programs,How to deallocate memory without using free() in C?calloc() versus malloc()How does free() know the size of memory to be deallocated?Use of realloc()What is Memory Leak? How can we avoid?
fseek() vs rewind() in CEOF, getc() and feof() in Cfopen() for an existing file in write modeRead/Write structure to a filefgets() and gets() in CBasics of File Handlingfsetpos() in Crename function in C/C++tmpfile() function in Cfgetc() and fputc() in Cfseek() in C/C++ftell() in Clseek() in C/C++remove function in C/C++Merge contents of two files into a third filePrint contents of file in C
C Program to print numbers from 1 to N without using semicolon?How to find sum of two numbers without using any operatorHow will you show memory representation of C variables?Condition To Print “HelloWord”Change/add only one character and print ‘*’ exactly 20 timesHow can we sum the digits of a given number in single statement?What is the best way in C to convert a number to a string?Calculate Logn in one linePrint “Even” or “Odd” without using Conditional statementHow will you print numbers from 1 to 100 without using loop?How can we sum the digits of a given number in single statement?How will you print “Geeks for Geeks” without using a semicolonWrite a one line C function to round floating point numbersHow will implement Your Own sizeofHow to count set bits in a floating point number in C?How to change the output of printf() in main() ?How to find length of a string without string.h and loop in C?Implement your own itoa()Write a C program that does not terminate when Ctrl+C is pressedHow to measure time taken by a function in C?Print a long int in C using putchar() onlyConvert a floating point number to string in CHow to write a running C code without main()?Write your own memcpy()C program to print characters without using format specifiersC program to print a string without any quote (singe or double) in the programExecute both if and else statements simultaneouslyPrint “Hello World” without using any header file
Quine – A self-reproducing programComplicated declarations in CUse of bool in CSequence Points in C | Set 1Optimization Techniques | Set 2 (swapping),ASCII NUL, ASCII 0 (’0?) and Numeric literal 0Little and Big Endian Mystery,Comparator function of qsort() in CProgram to validate an IP addressMultithreading in CAssertions in C/C++fork() in CInteresting Facts in C ProgrammingPrecision of floating point numbers in C++ (floor(), ceil(), trunc(), round() and setprecision())setjump() and longjump() in Cnextafter() and nexttoward() in C/C++pthread_cancel() in Cpthread_equal() in Cpthread_self() in CLocal Labels in Clvalue and rvalue in CGet and set the stack size of thread attributeDifference between fork() and exec()Errors in C/C++Why is C considered faster than other languagesIncompatibilities between C and C++Convert C/C++ code to assembly languageError Handling in CExecuting main() in C/C++ : Behind the sceneHygienic Macros in CCommand line arguments in C/C++scanf(), fscanf(), sscanf(), scanf_s(), fscanf_s(), sscanf_s()Some Interesting Facts in C ProgrammingDatabase Connectivity using C/C++Function Interposition in CMacros vs FunctionsWrite your own memcpy() and memmove()

XEM THÊM:  Trung Tâm Giải Trí Star Light Rạp Starlight Bmt, Lịch Chiếu Phim Starlight Buôn Ma Thuột

Xem thêm: Mắt Kính Mắt Điện Biên Phủ, Top 6 Địa Chỉ Mua Mắt Kính Uy Tín Tại Tphcm

Commonly Asked C Programming Interview Questions | Set 1Commonly Asked C Programming Interview Questions | Set 2

cdn dong khoi
Top 10 Spa Hàn Quốc Tốt Nhất Toàn Quốc, Golden Lotus Spa
Tác giả

Bình luận

LarTheme