What is the difference between printf and scanf in c?
No Answer is Posted For this Question
Be the First to Post Answer
can any one tel me wt is the question pattern for NIC exam
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is 1f in c?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
how can i get output like this? 1 2 3 4 5 6
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
wtite a program that will multiply two integers in recursion function
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
What does a pointer variable always consist of?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
what do you mean by inline function in C?