what is the benefit of c30
Answers were Sorted based on User's Feedback
How does pointer work in c?
What is union and structure?
What is the difference between array_name and &array_name?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
Explain the concept and use of type void.
How can you return multiple values from a function?
write a program to display & create a rational number
Is there any demerits of using pointer?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
what is difference between ANSI structure and C99 Structure?
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?