Array character in C Programming

Array character in C Programming

In this tutorial we will see Simple Array Character in C Language.   #include<stdio.h> void main() { char name[10] = {‘D’,’I’,’P’,’U’}; int i = 0; printf(“Character Memory Location\n”); while(name[i]!=’\0′) { printf(“\n[%c]\t[%u]”,name[i],&name[i]); i++; } }   Read Also :- C Structure…

Python Syllabus

Python-Syllabus-QUANTA-INFOTECH

Applications we can develop using “Python”. 1. Desktop GUI (Graphical User Interface) 2. Web and Internet Development (IoT – Internet of Things) 3. Games and 3D Graphics 4. Scientific and Numeric Applications 5. Machine Learning and Artificial Intelligence 6. Data…

What is Artificial Intelligence?

What is Artificial Intelligence? - quantainfotech.com

Do you know what is Artificial Intelligence (AI) ? Ever since computers have been invented, humans have greatly increased their use. We put them into doing all our work, which makes us more dependent on computers. Humans have increased the capacity of these machines to…