what is the difference between structural,object
based,object orientd programming languages?
Answer / himanshu singh
In structural focus is more on procedures whereas in oject based focus is more on data..
one mr thing.. structural follows top down approach whereas object oriented follows bottom up approach
| Is This Answer Correct ? | 4 Yes | 3 No |
What is variable in c with example?
What is anagram in c?
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
what different between c and c++
advantages of pointers?
All technical questions
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
How can you increase the allowable number of simultaneously open files?
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
How can you find out how much memory is available?