How can I avoid the abort, retry, fail messages?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Why can’t we compare structures?
Can we access array using pointer in c language?
Are global variables static in c?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
every function has return the value?
What are the 5 organizational structures?
what is event driven software and what is procedural driven software?
Write a program to check whether a number is prime or not using c?
Why data types in all programming languages have some range? Why ritche have disigned first time likethat?Why not a single data type can support all other types?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
write a program to swap two numbers without using temporary variable?