what is the answer for it
main()
{
int i;
clrscr();
printf("%d",&i)+1;
scanf("%d",i)-1;
}
Answers were Sorted based on User's Feedback
Answer / deepshree sinha
any garbage value of i because the value of i is not
initialised.
| Is This Answer Correct ? | 1 Yes | 1 No |
What is printf () in c?
Write a C program in Fibonacci series.
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What does malloc () calloc () realloc () free () do?
What are identifiers c?
which do you prefer C or Pascal?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
why return type of main is not necessary in linux
what are brk, sbrk?
Is fortran still used in 2018?