Hi Every one......... Please Any body give me the answer for
my question. Is it possible to print the word "PRINT F",
without using printf() statement in C-Language.
Answer Posted / rama krishna sidhartha
Yes..... By using puts() we can print it.
code:
puts("PRINT F");
By using fputs() also we can do it.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What are pragmas and what are they good for?
What is #include stdio h?
What is a structural principle?
which is an algorithm for sorting in a growing Lexicographic order
What are the disadvantages of external storage class?
What is extern keyword in c?
When we use void main and int main?
writ a program to compare using strcmp VIVA and viva with its output.
What is difference between && and & in c?
write a program to print data of 5 five students with structures?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
How do you list a file’s date and time?
What is %g in c?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???