Is it possible to execute code even after the program exits the main() function?
No Answer is Posted For this Question
Be the First to Post Answer
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
What is f'n in math?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
What is period operator in c?
What is the auto keyword good for?
What is external variable in c?
What is the diffrent between while and do while statement ?
develop algorithms to add polynomials (i) in one variable
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is the difference between single charater constant and string constant?
what is the difference between %d and %*d in c languaga?