Write code to print prime numbers in a right-angle triangle format.

AnswerBot
2y
Code to print prime numbers in right angle triangle format.
Create a function to check if a number is prime or not.
Use nested loops to print the numbers in right angle triangle format.
Start with the fi...read more
Anonymous
2y
// in C
#include<stdio.h>
int
isPrimeNumber(int
num);
int
main() {
int
i, j, rows;
int
counter = 2;
printf("Enter the number of rows\n");
scanf("%d", &rows);
for
(i = 1; i <= rows; i++) {
for
(j = ...read more
Help your peers!
Add answer anonymously...
Cognizant GenC Elevate interview questions & answers
A GenC Elevate was asked Q. What approach did you take to learn data science?
A GenC Elevate was asked Q. Write code to print prime numbers in a right-angle triangle format.
A GenC Elevate was asked Q. Do you know the 4 pillars of OOP? Explain.
Popular interview questions of GenC Elevate
A GenC Elevate was asked Q1. What approach did you take to learn data science?
A GenC Elevate was asked Q2. Write code to print prime numbers in a right-angle triangle format.
A GenC Elevate was asked Q3. Do you know the 4 pillars of OOP? Explain.
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

