techfoundary
techfoundary
Untitled
3 posts
Don't wanna be here? Send us removal request.
techfoundary · 2 years ago
Text
What is a data type and format specifiers in C language?
What is a data type in C language? What are data types in C? Primary data types Integer type (int) Floating point types (float): Character types (char) Double float (double) Void type (void) Derived data types User defined data types What are the format specifiers of data types in C? What is a data type in C language? In C programming language, as like another programming language,…
View On WordPress
0 notes
techfoundary · 2 years ago
Text
C Programming MCQ for Keywords with Explanation
_____ are also known as reserved words. Keywords Constants Identifiers Operators Answer a – keywords Explanation Keywords are also known as the reserved words in C programming language. As each keyword has a unique meaning that has been known to the compiler the keywords are reserved and cannot be used as a variable name or a user defined function.  There are total ___ keywords present in…
Tumblr media
View On WordPress
0 notes
techfoundary · 2 years ago
Text
C PROGRAMMING EXAMPLES WITH EXPLANATION - 2
Write a program to find area of Circle //Area of a Circle #include<stdio.h> #include<conio.h> void main() { float pi=3.14, r,area; clrscr(); printf(“Enter the radius:”); scanf(“%f”,&r); area=pi*r*r; printf(“Area of Circle = %f”,area); getch(); } Step by step explanation: There is declaration of the comment section at the top of the program. Then we have added the header files, stdio and…
Tumblr media
View On WordPress
1 note · View note