This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| LazyLoadImages = () => { | |
| const images = document.querySelectorAll("[data-src]"); | |
| const options = { | |
| rootMargin: "0px 0px 200px 0px" | |
| }; | |
| const imgObserver = new IntersectionObserver((entries, imgObserver) => { | |
| entries.forEach(entry => { | |
| if(!entry.isIntersecting){ | |
| return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<stdio.h> | |
| int main() | |
| { | |
| int i,j,k,pass,n; | |
| int m[20][20],s[10][10],p[10],result; | |
| printf("Enter the elements:"); | |
| scanf("%d",&n); | |
| printf("Enter the value of P:"); | |
| for(i=0;i<=n;i++) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'Database Access:- | |
| 'Form1(Insert, Delete etc.):- | |
| Dim con As New ADODB.Connection | |
| Dim rs As New ADODB.Recordset | |
| Private Sub Command1_Click() | |
| rs.AddNew |