What are register variables in c?
how to find greatet of 10 numbers without using array?
Write a program to generate the Fibinocci Series
What is c definition?
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack
What is structure in c explain with example?
Can a binary search tree be used as an index? If yes, how? Explain
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
What does malloc () calloc () realloc () free () do?
what is bit rate & baud rate? plz give wave forms
what is software?
What are global variables?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}