What is the proper way of these job
Tell me about there full work


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

Post New Answer

More C Interview Questions

Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.

2 Answers  


Explain the difference between null pointer and void pointer.

0 Answers   TCS,


How can we see the Expanded source code and compiled code for our source program in C?

1 Answers  


Explain Linker and Loader

5 Answers  


Why do we use int main?

0 Answers  






What is a string?

0 Answers  


Can anyone tell what is stack overflow? what precaution we should take?

1 Answers  


In C programming, how do you insert quote characters (‘ and “) into the output screen?

0 Answers  


#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 Answers   Ramco,


How many ways are there to swap two numbers without using temporary variable? Give the each logic.

9 Answers  


Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not

9 Answers   Alcatel,


How will you delete a node in DLL?

0 Answers   GrapeCity,


Categories