How many data structures are there in c?


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

Post New Answer

More C Interview Questions

#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }

9 Answers   TCS,


How do I use strcmp?

0 Answers  


c program for searching a student details among 10 student details

0 Answers  


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical

0 Answers  






What is the use of ?: Operator?

0 Answers  


By using C language input a date into it and if it is right?

0 Answers   Aricent,


In c programming language, how many parameters can be passed to a function ?

0 Answers  


Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me

2 Answers  


what is a c-language.what is do.

4 Answers   HCL,


What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }

1 Answers  


FILE PROGRAMMING

0 Answers   Wipro,


Categories