What are the advantages and disadvantages of c language?
No Answer is Posted For this Question
Be the First to Post Answer
dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?
What is "Hungarian Notation"?
Why we use stdio h in c?
What does malloc () calloc () realloc () free () do?
without using arithmatic operator convert an intger variable x into x+1
When the macros gets expanded?
how to swap 4 number without using temporary number?
Binary tree traversing
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Write a program to display the no of bit difference between any 2 given numbers eg: Num1 will 12->1100 Num2 will 7->0111 the difference in bits are 2.
Ow can I insert or delete a line (or record) in the middle of a file?
What is the difference b/w main() in C language and main() in C++.