What do mean by network ?
No Answer is Posted For this Question
Be the First to Post Answer
Is register a keyword in c?
Why c is faster than c++?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
What do you mean by a sequential access file?
How can I find out how much memory is available?
If errno contains a nonzero number, is there an error?
What are the modifiers available in c programming language?
What is a volatile keyword in c?
Where define directive used?
how to swap two nubers by using a function with pointers?
how we do lcm of two no using c simple if while or for statement
Explain how are 16- and 32-bit numbers stored?