How do you view the path?


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

Post New Answer

More C Interview Questions

What is the heap?

0 Answers  


What is actual argument?

0 Answers  


How to create struct variables?

0 Answers  


Which is the best sort method for library management?

1 Answers   Microsoft,


write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.

0 Answers   Subex,






Who developed c language?

0 Answers  


what r callback function?

1 Answers  


write a program to print infinte number

4 Answers  


#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?

1 Answers  


State the difference between x3 and x[3].

0 Answers   Aricent,


to convert a string without using decrement operater and string functions

1 Answers  


write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?

3 Answers   Oracle,


Categories