-
RENUHA S wrote a new item 2 years, 5 months ago
Data structures
-
RENUHA S started the topic data function in excel in the forum Microsoft Excel 2 years, 5 months ago
Defining data functions in a meaningful way is no easy task because they are present in different contexts with varying goals. Examples are critical to understand. However, we can generalize their purpose to establish a definition.
In short, a data function is a query, modification, or computation that directly or indirectly impacts values in a…[Read more]
-
RENUHA S started the topic vowel or consonants in the forum C Programming 2 years, 5 months ago
C Programming if..else statement
#include <stdio.h>
int main()
{
char ch;
bool isVowel = false;printf(“Enter an alphabet: “);
scanf(“%c”,&ch);if(ch==’a’||ch==’A’||ch==’e’||ch==’E’||ch==’i’||ch==’I’
||ch==’o’||ch==’O’||ch==’u’||ch==’U’)
{
isVowel = true;}
if (isVowel == true)
printf(“%c is a…[Read more]
