What is the purpose of sprintf() function?
No Answer is Posted For this Question
Be the First to Post Answer
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
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.
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
What is new line escape sequence?
how can i get output like this? 1 2 3 4 5 6
Write a progarm to find the length of string using switch case?
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
What is call by value in c?
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
How do I round numbers?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.