Answer Posted / naresh
printf is used to print the content to standard output.
this is a predefined function in C.It is included in stdio.h
library
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Where are local variables stored in c?
What happens if a header file is included twice?
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Explain goto?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
what is the format specifier for printing a pointer value?
What oops means?
What is file in c preprocessor?
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 []);
Write a function that will take in a phone number and output all possible alphabetical combinations
Why do we use return in c?
What is spaghetti programming?
Why doesn't C support function overloading?