Why & is used in scanf in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of 'auto' keyword
void main() { int i=5; printf("%d",i++ + ++i); }
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
what is disadvantage of pointer in C
Difference between pass by reference and pass by value?
What is the purpose of #pragma directives in C?
why effort estimation is important?
how to find turn around time in operating system?
How do you initialize function pointers? Give an example?
c program to arrange digits in a no in ascending and descending order
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?