What is a const pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
any string of bits of length 'n' represents a unique non- negative integer between.............?
Can you write the function prototype, definition and mention the other requirements.
What are keywords in c with examples?
C,c++, Java is all are structural oriented or procedure oriented language..?
What is the correct declaration of main?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
What is pragma c?
What is a const pointer?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
In c programming language, how many parameters can be passed to a function ?
What is logical error?