What is use of pointer?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of fflush() function?
provide an example of the Group by clause, when would you use this clause
Find occurence of a character in a sting.
count the numbers between 100 and 300, that star with 2 and ends with 2
can v write main() { main(); } Is it true?
Can we increase size of array in c?
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.
what is the difference between class and unio?
What is dynamic memory allocation?
what is an ERP?
What are the types of i/o functions?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }