Answer Posted / karthik
using the function
gets(variable)
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
What are directives in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is the purpose of 'register' keyword in c language?
How do you determine whether to use a stream function or a low-level function?
What is extern variable in c with example?
What is a structure and why it is used?
What are the types of operators in c?
What is derived datatype in c?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
How can I find out the size of a file, prior to reading it in?
What are enums in c?
Is c pass by value or reference?
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 []);
What is the purpose of type declarations?
What was noalias and what ever happened to it?