Why double pointer is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
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.
Why & is used in scanf in c?
What does 3 periods mean in texting?
What does %c do in c?
What are preprocessor directives?
What are the application of void data type in c?
Explain what are global variables and explain how do you declare them?
can we print any string in c language without using semicolon(;)(terminator) in whole program.
What is an volatile variable?
What does 1f stand for?
What is a structural principle?