how many error occurs in C language ?
Post New Answer View All Answers
How can I write a function that takes a format string and a variable number of arguments?
Between macros and functions,which is better to use and why?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is the use of in c?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Which is better oop or procedural?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
What is a header file?
What is pointer in c?
How do you determine whether to use a stream function or a low-level function?
What is LINKED LIST? How can you access the last element in a linked list?
In a switch statement, what will happen if a break statement is omitted?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
How many levels of pointers can you have?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above