Are there constructors in c?


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

Post New Answer

More C Interview Questions

write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that

3 Answers  


write a function which accept two numbers from main() and interchange them using pointers?

3 Answers  


What does %d do?

0 Answers  


Explain what is output redirection?

0 Answers  


Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program

19 Answers   CTS, HCL, TCS,






Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?

1 Answers   Oracle,


What is null character in c?

0 Answers  


What are the Advantages of using macro

0 Answers  


diff. between *p and **p

3 Answers  


write a program for size of a data type without using sizeof() operator?

22 Answers   HCL, IBM,


Difference between fopen() and open()?

3 Answers   Aricent,


write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????

7 Answers   Infosys, TCS,


Categories