Why do we use header files in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a C code To reverse a linked list
Can you please explain the difference between strcpy() and memcpy() function?
What is the translation phases used in c language?
What is signed and unsigned?
post new interiew question and aptitude test papers
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
Can you assign a different address to an array tag?
What does the message "automatic aggregate intialization is an ansi feature" mean?
how to find greatet of 10 numbers without using array?
What extern c means?
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
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6