What is the stack in c?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between goto, long jmp() and setjmp()?
what are the uses of structure?
What are the 5 types of organizational structures?
How can I find the modification date and time of a file?
write a own function for strstr
What is the difference between declaring a variable and defining a variable?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
how we can make 3d venturing graphics on outer interface
How to use c/c++ code in JAVA
10 Answers CDAC, IBM, Satyam, Scope International,
Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.