-
Ashifa wrote a new item 2 years, 4 months ago
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.
-
Ashifa wrote a new item 2 years, 4 months ago
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. […]
-
Ashifa wrote a new item 2 years, 4 months ago
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.
-
Ashifa wrote a new item 2 years, 4 months ago
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.
-
Ashifa wrote a new item 2 years, 4 months ago
When a data member of one structure is referred by the data member of another function, then the structure is called a Nested Structure.
-
Ashifa wrote a new item 2 years, 4 months ago
The program will be compiled but will not be executed. To execute any C program, main() is required.
-
Ashifa wrote a new item 2 years, 4 months ago
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
-
Ashifa wrote a new item 2 years, 4 months ago
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 ab […]
-
Ashifa wrote a new item 2 years, 4 months ago
Break Control statement is valid to be used inside a loop and Switch control statements.
-
Ashifa wrote a new item 2 years, 4 months ago
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 f […]
-
Ashifa wrote a new item 2 years, 4 months ago
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 p […]
-
Ashifa wrote a new item 2 years, 4 months ago
The Datatypes in C Language are broadly classified into 4 categories. They are as follows: Basic Datatypes Derived Datatypes Enumerated Datatypes Void Datatypes
-
Ashifa wrote a new item 2 years, 4 months ago
Yes, we can compile, but it can’t be executed. But, if we use #define, we can compile and run a C program without using the main() function.
-
Ashifa wrote a new item 2 years, 4 months ago
The argument passed to the main() function while executing the program is known as command line argument.
-
Ashifa wrote a new item 2 years, 4 months ago
The new line escape sequence is represented by “n”. It inserts a new line on the output screen.
-
Ashifa wrote a new item 2 years, 4 months ago
Brain Kernighan.
-
Ashifa wrote a new item 2 years, 4 months ago
It is 32 characters ideally but implementation specific.
-
Ashifa wrote a new item 2 years, 4 months ago
The fopen() function is used to open file whereas fclose() is used to close file.
-
Ashifa wrote a new item 2 years, 4 months ago
A loop running continuously for an indefinite number of times is called the infinite loop.
-
Ashifa wrote a new item 2 years, 4 months ago
#include void main(){ if(printf(“hello world”)){} // It prints the ?hello world? on the screen. }
- Load More
