Install Python 3.8 on CentOS 7 / CentOS 8

Install Python 3.8 on CentOS 7 / CentOS 8 Step 1: Install Python Dependencies As we’ll install Python from source, let’s install the packages required for Python installation. sudo yum -y groupinstall “Development Tools” sudo yum -y install openssl-devel bzip2-devel libffi-devel Confirm gcc is available: $ gcc –version gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39) … Read more

How to Install Python 3.8 on Amazon Linux

How to Install Python 3.8 on Amazon Linux Python is a powerful programming language. It is very friendly and easy to learn. During the latest update of this article Python 3.8.0 (of Python 3.8 series) latest stable version is available to download and install. This tutorial will help you to install Python 3.8 on Amazon … Read more

NEET PG Result 2020: नीट पीजी रिजल्ट जारी, जानें क्या रही कटऑफ, ये रहा Direct Link

ctet result 2019

NEET PG Result 2020: नीट पीजी रिजल्ट जारी, जानें क्या रही कटऑफ, ये रहा Direct Link https://www.nbe.edu.in/ Direct Link NEET PG result 2020 declared: नेशनल बोर्ड ऑफ एग्जामिनेशन (NBE) ने गुरुवार शाम नेशनल एलिजिबिलिटी कम एंट्रेंस टेस्ट फॉर पोस्ट ग्रेजुएट्स का रिजल्ट जारी कर दिया। NEET PG Exam देश भर में विभिन्न केंद्रों पर 5 … Read more

C Program to Sort set of strings in alphabetical order

#include<stdio.h> #include<string.h> int main(){ int i,j,count; char str[25][25],temp[25]; puts(“How many strings u are going to enter?: “); scanf(“%d”,&count); puts(“Enter Strings one by one: “); for(i=0;i<=count;i++) gets(str[i]); for(i=0;i<=count;i++) for(j=i+1;j<=count;j++){ if(strcmp(str[i],str[j])>0){ strcpy(temp,str[i]); strcpy(str[i],str[j]); strcpy(str[j],temp); } } printf(“Order of Sorted Strings:”); for(i=0;i<=count;i++) puts(str[i]); return 0; }

C Program to convert uppercase string to lowercase string

#include<stdio.h> #include<string.h> int main(){ /* This array can hold a string of upto 26 * chars, if you are going to enter larger string * then increase the array size accordingly */ char str[26]; int i; printf(“Enter the string: “); scanf(“%s”,str); for(i=0;i<=strlen(str);i++){ if(str[i]>=65&&str[i]<=90) str[i]=str[i]+32; } printf(“\nLower Case String is: %s”,str); return 0; }

C Program to Convert Decimal to Octal Number

#include <stdio.h> #include <math.h> /* This function converts the decimal number “decimalnum” * to the equivalent octal number */ int decimalToOctal(int decimalnum) { int octalnum = 0, temp = 1; while (decimalnum != 0) { octalnum = octalnum + (decimalnum % 8) * temp; decimalnum = decimalnum / 8; temp = temp * 10; } … Read more

C program to calculate and print the value of nPr

#include <stdio.h> void main() { int n, r, npr_var; printf(“Enter the value of n:”); scanf(“%d”, &n); printf(“\nEnter the value of r:”); scanf(“%d”, &r); /* nPr is also known as P(n,r), the formula is: * P(n,r) = n! / (n – r)! For 0 <= r <= n. */ npr_var = fact(n) / fact(n – r); … Read more

C Program to Count Vowels and Consonants in a String using Pointer

  #include <stdio.h> int main() { char str[100]; char *p; int vCount=0,cCount=0; printf(“Enter any string: “); fgets(str, 100, stdin); //assign base address of char array to pointer p=str; //’\0′ signifies end of the string while(*p!=’\0′) { if(*p==’A’ ||*p==’E’ ||*p==’I’ ||*p==’O’ ||*p==’U’ ||*p==’a’ ||*p==’e’ ||*p==’i’ ||*p==’o’ ||*p==’u’) vCount++; else cCount++; //increase the pointer, to point next … Read more

C Program to Print String using Pointer

#include <stdio.h> int main() { char str[100]; char *p; printf(“Enter any string: “); fgets(str, 100, stdin); /* Assigning the base address str[0] to pointer * p. p = str is same as p = str[0] */ p=str; printf(“The input string is: “); //’\0′ signifies end of the string while(*p!=’\0′) printf(“%c”,*p++); return 0; }  

Anna University December Exam Results Soon. Here’s How To Check

ctet result 2019

Anna University December Exam Results Soon. Here’s How To Check Anna University result 2019: Anna University will release the December and January examinations’ results soon. According to an official, the Anna University results for the examinations held recently will be released by the end of this week. However, the university official has not specified an exact date … Read more