Sending Email’s In Django -Free Django Tutorials

Django is one of the framework that comes with a ready and easy-to-use light engine for sending and receiving email’s.Although in python,to send or receive email you just need to import smtplib ,in django for email functionality user just have to import django.core.mail. Quick Example: from django.core.mail import send_mail send_mail( ‘Subject here’, ‘Here is the …

Sending Email’s In Django -Free Django Tutorials Read More »

Precedence of operator – Free C programming tutorial

In this tutorial you will be familiarized with the precedence of operator which are available in C programming language. Precedence of operator: Precedence of operator in C is defined as the uniting or  grouping of terms in an expression/equation to decide how an expression is to be calculated in order to get a desired output. …

Precedence of operator – Free C programming tutorial Read More »

Binary operators – Free c programming tutorial

In this tutorial you will learn about the various type of operators available in the c programming language based on number of operands i.e. unary and binary operators. An operator in C is defined as a sign or symbol that tells the compiler to implement definite mathematical or logical operation. An operand is defined as quantity …

Binary operators – Free c programming tutorial Read More »