Program to Find Quotient and Remainder in C++ Program to Find Quotient and Remainder in C++ #include <iostream> using namespace std; int main() […]
Read moreTag: c programming language
Programs in C language
Programs in C language Programs in C language Ques 1: Write a program to find out whether it is an odd number or even […]
Read moreTernary Operator
Ternary Operator Ternary Operator Syntax: Condition ? Expression 1(True) : Expression 2(False) ; Program: To check wheather the given number is even or odd […]
Read moreFish pattern program
#include<stdio.h> int main() { int x,y,t; for(t=0;t<50;t++) { for(y=7;y>-8;y–) { for(x=-7;x<=10;x++) { if(y==7) { if((x+t)%2!=0) printf(“–“); else printf(“~~”); } else if(y==-7) printf(“__”); else if(y==6) […]
Read morerace condition, race conditions, operating systems, common operating systems
race condition, race conditions, operating systems, common operating systems race condition, race conditions, operating systems, common operating systems When more than one process is executing […]
Read moreInput a number till 12 and print no of month, switch case program, java switch program, C switch program
Input a number till 12 and print no of month, switch case program, java switch program, C switch program Input a number till 12 and […]
Read moreInput number below 7 and print Day of week, switch programming, switch programming in C, switch programming in JAVA, programming questions
Input number below 7 and print Day of week, switch programming, switch programming in C, switch programming in JAVA, programming questions Input number below 7 […]
Read moreInput age and physical health and print eligibility for riding bike and scooty, JAVA program , C program , if else program , nested if else program , ladder if else program
Input age and physical health and print eligibility for riding bike and scooty, JAVA program , C program , if else program , nested if […]
Read moreWrite a simple C program to enter five subject marks and calculate its average , how to add five subject marks in c programming , c program to calculate marks of five subject , sum and percentage marks program in c language #C
Write a simple C program to enter five subject marks and calculate its average , how to add five subject marks in c programming , […]
Read moreWrite a c++ program to find sum of diagonal elements of a square matrix
Write a c++ program to find sum of diagonal elements of a square matrix Write a c++ program to find sum of diagonal elements of […]
Read more
Recent Comments