GET I.T. DEPARTMENT FOR LESS GET I.T. DEPARTMENT FOR LESS GET I.T. DEPARTMENT FOR LESS GET I.T. DEPARTMENT FOR LESS GET I.T. DEPARTMENT FOR LESS GET I.T. DEPARTMENT FOR LESS
C++ is The New Programming Language of Computing!!

Tag: C++

C++ is The New Programming Language of Computing!!

C++ is the most frequently used programming language by developers and designers. As it is compiled and free-form, it is used to create GUI’s and API’s and all other platforms. Considered as the easiest intermediate level language, C++ is best known to provide a high probability, and essential, objective-focused and standard programming features.  As it includes basic and advanced language.. Read more

C Program To Predict The Gender of A Person With Name
C Program To Predict The Gender of A Person With Name

This program predicts the gender of a person with his/her Name logic: This program compares the last characters of the string with names Program : #include<stdio.h> #include<string.h> int main() { char s[100],c; m: system(“cls”); b: printf(“enter the name (in lower case) :”); scanf(“%s”,s); if(strlen(s)>=3) { if(s[strlen(s)-1]==s[strlen(s)-2]) { printf(“nnenter a valid namenn”); goto b; } if(s[(strlen(s))-1]==’i’||s[(strlen(s))-1]==’u’||s[strlen(s)-1]==’a’||s[strlen(s)-4]==’d’||s[strlen(s)-1]==’i’) { printf(“nn%s is female”,s); }.. Read more