Bhanu Priya has Published 1449 Articles

Explain about link and definition section in C language

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:19:23

4K+ Views

The link and definition sections are called as preprocessor directives. It gives instructions to the compiler to link function from the system library.For example, the definition section defines all the symbolic constants.#includeFor example, #define PI 3.1415The preprocessor directives must start with # symbol.Without link definition the program will not execute ... Read More

C program to handle integer data files using file concepts

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:18:13

1K+ Views

In this program, we are trying to sort out the odd numbers and even numbers that are present in one file. Then, we try to write all odd numbers in ODD file and even numbers into EVEN file.Open a file DATA in write mode and write some numbers into the ... Read More

What are different pointer operations and problems with pointers in C language?

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:13:21

3K+ Views

A pointer is a variable whose value is the address of an another variable, i.e., direct address of the memory location. Like any variable or constant, you must declare a pointer before using it to store any variable address.Consider the following statement −int qty = 179;The representation of the variable ... Read More

C program to display the prime numbers in between two intervals

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:11:35

10K+ Views

Enter two numbers at console during runtime. Then, declare the flag variable which is used to check whether the number is prime or not with the help of for loop condition.Whenever, the flag is zero, it prints the prime number and if flag is one, it exists from the loop.ProgramFollowing ... Read More

Find the sum of first and last digit for a number using C language

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:02:58

4K+ Views

The sum of first and last digit for a number can be calculated if we use the below mentioned algorithm in C programming language.AlgorithmRefer an algorithm given herewith −START Step 1: Declare no, sum variables of type int Step 2: Read a number at runtime Step 3: Compute sum=no%10 Step ... Read More

Explain the different sections in C language

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:01:41

10K+ Views

C program is defined by set of protocols that are to be followed by a programmer, while writing the code.SectionsThe complete program is divided into different sections, which are as follows −Documentation Section − Here, we can give commands about program like author name, creation or modified date. The information ... Read More

What is the use of randomize and srand functions in C language?

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:00:14

380 Views

If we are generating random numbers in a program, it is necessary to control the series of numbers.The randomize() and srand() functions are used to seed the random number generator.The process of assigning the random number generators starting number is called seeding the generators.The randomize() uses PC’s clock to produce ... Read More

State the difference between memcmp and memicmp functions in C language

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 09:58:55

439 Views

Memcmp() and memicmp() compares first n bytes of two blocks of memory.memcmp() performs comparison as unsigned characters.memicmp() performs comparison as characters but, ignore upper case or lower case letters.Both functions return an integer value.Two memory buffers are equal (returns 0).First buffer is greater than second (returns >0).First buffer is less ... Read More

C Program to count vowels, digits, spaces, consonants using the string concepts

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 09:56:06

10K+ Views

An array of characters (or) collection of characters is called a string.DeclarationRefer the declaration given below −char stringname [size];For example − char a[50]; string of length 50 characters.InitializationThe initialization is as follows −Using single character constant −char a[10] = { ‘H’, ‘e’, ‘l’, ‘l’, ‘o’ ,‘\0’}Using string constants −char a[10] = ... Read More

C program to display only the lower triangle elements in a 3x3 2D array

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 09:54:15

416 Views

Let’s take the input of 3x3 matrix, means total 9 elements, in 2D array using keyboard at runtime.With the help of it and for loops, we can display only lower triangle in 3X3 matrix.The logic to print lower triangle elements is as follows −for(i=0;i=2nd index          printf("%d", ... Read More

Advertisements