new coding stuff// gain knowledge // learn many languages// 🤓🤓🤓🤓🤓🤓

Joined July 2020
1 Photos and videos
What is OOP?(object oriented programming) There are two types of programming 1. Procedural programming 2. Object oriented programming The two are a lot different from each other.
1
1
difference between the two is : Procedural programming does not have any proper way for hiding data so it is less secure while oop can hide data in it and can show only appropriate information. OOP is based on real world problems while the opposite one is based on unreal world.
1
1
Some basic questions that might help you to differentiate between the two languages .😀😀😀😀😀😀 Do wrute down ur answers and let know how much have you learned from the basic of java oop💯💯💯💯
1
So what should be the topics to discuss next for learning ... Web development or oop java or basic C language or advance C???? 🤔🤔🤔🤔
1
Coder_learn retweeted
ENUMERATIONS IN C: #include<stdio.h> enum week{Mon, Tue, Wed, Thur, Fri, Sat, Sun}; int main() { enum week day;   day = Wed;   printf("%d",day);  return 0; }  Enum is special data types in c, used to store words represented as...
1
1
1
Welcome to the world of coding🤓🤓🤓hey geeks i need support....
1
1
ENUMERATIONS IN C: #include<stdio.h> enum week{Mon, Tue, Wed, Thur, Fri, Sat, Sun}; int main() { enum week day;   day = Wed;   printf("%d",day);  return 0; }  Enum is special data types in c, used to store words represented as...
1
1
1
Enum is used to give names to integral constants Here in code enum is data type Week is the variable name given to the data type . While "enum week days" ,here days represent the contents inside the {} in declaration of enum. //Enum is declared outside the main function.
1