Why does everyone say not to use scanf? What should I use instead?
No Answer is Posted For this Question
Be the First to Post Answer
If input is 123 then how to print 100 and 20 and 3 seperately?
What is #line in c?
Why the use of alloca() is discouraged?
Write the control statements in C language
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
How many keywords (reserve words) are in c?
show how link list can be used to repersent the following polynomial i) 5x+2
how to write hello word without using semicolon at the end?
Write a Program to find whether the given number or string is palindrome.
what is function pointer?