What are header files in c?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
what defference between c and c++ ?
What is a program flowchart and how does it help in writing a program?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What is the best organizational structure?
write a statement to display all the elements array M(in reverse order? int M[8]={20,21,22,23,24,25,26,27};
What is union in c?
What is the difference between formatted&unformatted i/o functions?
Explain data types & how many data types supported by c?
Does * p ++ increment p or what it points to?
Explain in detail how strset (string handling function works )pls explain it with an example.
What is wild pointer in c?