What is your stream meaning?


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

Post New Answer

More C Interview Questions

Explain high-order bytes.

0 Answers  


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


What are the usage of pointer in c?

0 Answers  


Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]

0 Answers  


What is a pointer and how it is initialized?

0 Answers  






Hi Every one......... Please Any body give me the answer for my question. Is it possible to print the word "PRINT F", without using printf() statement in C-Language.

4 Answers  


What are lookup tables in c?

0 Answers  


Write a routine that prints out a 2-D array in spiral order!

1 Answers   Lucent,


What are the advantages of c language?

0 Answers  


Is r written in c?

0 Answers  


Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.

8 Answers  


What is the difference between c and python?

0 Answers  


Categories