What is anagram in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why is it usually a bad idea to use gets()? Suggest a workaround.
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.
what are the general concepts of c and c++
How to implement variable argument functions ?
Is calloc better than malloc?
What are the advantages of Macro over function?
what is an inline function?
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
Write code for finding depth of tree
Why c is faster than c++?
What does sizeof int return?
What is a pragma?