Combinations of fibanocci prime series


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the role of this pointer?

0 Answers  


void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..

1 Answers  


Why main is not a keyword in c?

0 Answers  


What are the types of functions in c?

0 Answers  


what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??

5 Answers  






What is string function in c?

0 Answers  


what is c language?

2 Answers  


What is adt in c programming?

0 Answers  


How are variables declared in c?

0 Answers  


Can we use visual studio for c?

0 Answers  


There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?

0 Answers  


Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)

2 Answers  


Categories