without a terminator how can we print a message in a printf
() function.
Answer Posted / indrani
#include<stdio.h>
void main()
{
fun(printf("\nCute Ramya !!!!!"));
}
fun(int i)
{
i++;
}
| Is This Answer Correct ? | 5 Yes | 5 No |
Post New Answer View All Answers
Explain what is the most efficient way to store flag values?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
What's the best way of making my program efficient?
What are the two types of functions in c?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
c program for searching a student details among 10 student details
What are pointers really good for, anyway?
What is echo in c programming?
Is c dynamically typed?
Process by which one bit pattern in to another by bit wise operation is?
Why can’t constant values be used to define an array’s initial size?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is the use of pointers in C?
What does *p++ do?