











0Notifications Mark All Read
No New notification
- Login
- Get Prime
C Menu
- Basics of C
- Basics of C Programming
- Features of C Programming
- Preprocessors in C Programming
- History of C Programming
- Low Level Programming
- Why C is Middle Level Language
- Introduction to C programming
- Structure of a C program
- Input-Output Functions
- Difference between Compiler and Interpreter
- Assembler v/s Compiler v/s Interpreter v/s Linker v/s Loader
- Basics to Code
- Operators in C
- Operators in C
- Precedence Associativity Operators
- Arithmetic Operators
- Relational Operators
- Logical Operators
- Bitwise Operators
- Assignment Operators
- Ternary Operators in C
- Size of Operators
- Conditional Operators
- Comma Operators
- Format Specifiers in C
- Difference between %d and %i
- Difference between %f, %e, %E and %g
- How to print% using printf
- How to print \ using printf
- How to print “” using printf
- What is the use of %p in C
- Library Functions in C
- pow() in C
- sqrt() in C
- Storage Classes in C
- Conditional statements and Decision Making in C
- DataType & Functions in C
- Arrays, String, Structure, Union and Enum
- Pointer in C
- Library Function in C
- Library function in C
- math.h in c
- Library function math.h acos
- Library function math.h acosh
- Library function math.h asin
- Library function math.h asinh
- Library function math.h atan
- Library function math.h atan2
- Library function math.h atanh
- Library function math.h cbrt
- Library function math.h cell
- Library function math.h cos
- Library function math.h cosh
- Library function math.h exp
- Library function math.h fabs
- Library function math.h floor
- Library function math.h hypot
- Library function math.h log
- Library function math.h log10
- Library function math.h pow
- Library function math.h sin
- Library function math.h sinh
- Library function math.h sqrt
- Library function math.h tan
- Library function math.h tanh
- Library function studio.h clearerr
- Library function string.h strcat
- Library function string.h strcmp
- Library function string.h strcpy
- Library function string.h strlen
- File Handling
- Dynamic Memory Allocation
- Miscellaneous Topics in C
- Miscellaneous Coding Questions
All about C Language


PrepInsta Introduction to C
Below you will find all the important topic relating to the C language. These topics will help you clear the basics and underlying concepts of C, that will help you understand and grasp the language better.


Basics of C
Here we will learn about the structure of C language and the syntax in order to construct a feasible code. These are important topics and you need to be thorough in these topics before you move further.
Basics to Code
Here we will learn about all the important topics relating to coding and how these are important for a thorough understanding of the C Programming domain.




Operators in C
Here we will learn about all the important topics relating to coding and how these are important for a thorough understanding of the C Programming domain.
- Operators in C
- Precedence Associativity Operators
- Arithmetic Operators
- Relational Operators
- Logical Operators
- Bitwise Operators
- Assignment Operators
- Ternary Operators in C
- Size of Operators
- Conditional Operators
- Comma Operators
- Format Specifiers in C
- Difference between %d and %i
- Difference between %f, %e, %E and %g
- How to print% using printf
- How to print \ using printf
- How to print “” using printf
- What is the use of %p in C
- Library Functions in C
- pow() in C
- sqrt() in C
Storage Classes in C




Conditional statements and Decision Making in C


Arrays, String, Structure, Union and Enum


Library Function in C
- Library function in C
- math.h in c
- Library function math.h acos
- Library function math.h acosh
- Library function math.h asin
- Library function math.h asinh
- Library function math.h atan
- Library function math.h atan2
- Library function math.h atanh
- Library function math.h cbrt
- Library function math.h cell
- Library function math.h cos
- Library function math.h cosh
- Library function math.h exp
- Library function math.h fabs
- Library function math.h floor
- Library function math.h hypot
- Library function math.h log
- Library function math.h log10
- Library function math.h pow
- Library function math.h sin
- Library function math.h sinh
- Library function math.h sqrt
- Library function math.h tan
- Library function math.h tanh
- Library function studio.h clearerr
- Library function string.h strcat
- Library function string.h strcmp
- Library function string.h strcpy
- Library function string.h strlen
File Handling & Dynamic Memory Allocation
File Handling
- File handling in C
- File input and output
- fprintf() & fscanf()
- fputc() & fget()
- fseek()
- rewind()
- ftell()
Dynamic Memory Allocation
Miscellaneous Topics in C


Miscellaneous Coding Questions
- Fuel Consumption –
Click here - Cyclically rotate an array by K positions
– Click Here - Prime sum of Nth power –
Click Here - Playing with strings containing vowels –
Click Here


Do you provide certificate for every course?
Yes, for PrepInsta Prime Subscription. Certifications are provided for each course completed.
#include
int sita(int ram, int Shyam)
{
if (ram == 0)
return 0;
else if (ram % 2)
return sita(ram/2, 2*shayam) + shayam;
else return Sita(ram/2, 2*shayam) – shayam;
}
int main ()
{
printf(“%d”, sita(20, 1));
return 0;
}
How come the answer 9 is coming? Plz explain.
from where i can watch python & data structures videos?