Assignments
Practise and learn through our wide range of assignments
Download our assignments based on your preferred programming language. Don’t forget to upload your queries and doubts if you need assistance.
Go through our Projects
Select your projects from a variety of programming languages. Having doubts solving them! then ask our experts and they would guide you through your queries online. Also, if you’ve got your own project, then upload it on website, and get rated.
Explore More Resources
FAQ's
Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
Ask the Expert
Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
Interview Questions
Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
Click edit button to change this text. """""""""""""""""" Lorem ipsum dolor sit amet, consectetur adipiscing elit. U
#include <stdio.h>
#include <conio.h>
int main()
{
int n=0;
printf(“enter the number to check”);
scanf(“%d”, &n);
if(n%2==0)
printf(“no is even”);
else
printf(“no is odd”);
}