साइबर सिक्योरिटी सिस्टम क्या है|security system project in c++ in hindi
नमस्ते, दोस्तों इस लेख में हम जानेंगे साइबर सिक्योरिटी सिस्टम क्या है? ये कितने टाइप के होते है और इसको c++ में कुछ मिनी...
Recent Post
Python fundamentals (python fundamentals free course)
Python fundamentalsBefore we start explaining the semantics of the language, you need to know how to execute Python programs Python is slightly different from...
Python: Split a string on the last occurrence of the delimiter| split string last...
Write a python program to split a string on the last occurrence of the delimiter.Program:-str1 = "s,i,r,f,p,a,d,h,a,i"
print(str1.rsplit(',' , 1)
print(str1.rsplit(',' , 2)
print(str1.rsplit(',' , 5)Output:-'s,i,r,f,p,a,d,h,a','i'
's,i,r,f,p,a,d,h', 'a','i'
's,i,r,f,p',...
operator overloading in c++ example in hindi | operator overloading in c++ full details.
Operator overloading in C++ऑपरेटर ओवरलोडिंग एक संकलन-समय बहुरूपता है जिसमें उपयोगकर्ता द्वारा परिभाषित डेटा प्रकार को विशेष अर्थ प्रदान करने के लिए ऑपरेटर को...
How to start to Learn C Language |Learn c in Hindi
How to start to Learn C Languageहेल्लो , स्टूडेंट आज हम c language को स्टार्टिंग से सारे टॉपिक को कवर करेंगे| जिससे आपको पढने...
Python function arguments (object, Keys, Default)
Python function argumentsArgumentsThe arguments specified in a function definition are taken in the order in which they are defined, for example:def message to, text):
...