hi , please send me NIC written test papers to
sbabavalli@gmail.com


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

Post New Answer

More C Interview Questions

Explain what header files do I need in order to define the standard library functions I use?

0 Answers  


Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.

0 Answers  


What is the difference b/w Structure & Class?

3 Answers  


How can I find out how much free space is available on disk?

0 Answers  


Explain what is the benefit of using an enum rather than a #define constant?

0 Answers  






How are pointers declared in c?

0 Answers  


Explain why can’t constant values be used to define an array’s initial size?

0 Answers  


What is the equivalent code of the following statement in WHILE LOOP format?

0 Answers  


Explain the use of keyword 'register' with respect to variables.

0 Answers  


can you change name of main()?how?

3 Answers   HCL, Siemens,


consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is

4 Answers   TCS,


what is a NULL pointer?

2 Answers  


Categories