What is the purpose of sprintf() function?
No Answer is Posted For this Question
Be the First to Post Answer
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
C program to find frequency of each character in a text file?
What is #line in c?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is extern c used for?
What is the difference between Printf(..) and sprint(...) ?
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
Can we declare variables anywhere in c?