What are the differences between Structures and Arrays?
No Answer is Posted For this Question
Be the First to Post Answer
What is call by value in c?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
What is wrong with this program statement? void = 10;
What are global variables and explain how do you declare them?
What happens if a header file is included twice?
What is malloc calloc and realloc in c?
What 'lex' does?
what is the difference between. system call and library function?
What does 1f stand for?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Write a C program in Fibonacci series.
Are there namespaces in c?