Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
No Answer is Posted For this Question
Be the First to Post Answer
how to return 1000 variables from functio9n in c?plz give me code also
What is the mean of this statement:: if(int i=0 * i=9)
What is a stream?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
How are variables declared in c?
Difference between Shallow copy and Deep copy?
How can I read/write structures from/to data files?
why wipro wase
Explain what are its uses in c programming?
What is a far pointer in c?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????