High Definition Standard Definition Theater
Video id : b70fao9jgfU
ImmersiveAmbientModecolor: #f1eae9 (color 1)
Video Format : (720p) openh264 ( https://github.com/cisco/openh264) mp4a.40.2 | 44100Hz
Audio Format: 140 ( High )
PokeTubeEncryptID: eed59c83cc68462e6c1f22a2ef0b2741371f28d2566b7cdff80542642b1b932b1b3448cb1a8867e683590a5dac2d763f
Proxy : kr-proxy.poketube.fun - refresh the page to change the proxy location
Date : 1726485240546 - unknown on Apple WebKit
Mystery text : YjcwZmFvOWpnZlUgaSAgbG92ICB1IGtyLXByb3h5LnBva2V0dWJlLmZ1bg==
143 : true
37 Views • Oct 25, 2023 • Click to toggle off description
Metadata And Engagement

Views : 37
Genre: Education
Uploaded At Oct 25, 2023 ^^


warning: returnyoutubedislikes may not be accurate, this is just an estiment ehe :3
Rating : 5 (0/4 LTDR)

100.00% of the users lieked the video!!
0.00% of the users dislieked the video!!
User score: 100.00- Masterpiece Video

RYD date created : 2023-10-26T11:02:56.288193Z
See in json
Tags

oh hey i think you lost your tags look how to find one

Connections
Nyo connections found on the description ;_; report an issue lol

YouTube Comments - 5 Comments

Top Comments of this video!! :3

@SemiDesign

10 months ago

module dy_arr;
integer d_arr1[];
integer d_arr2[];

initial begin
d_arr1 = new[5];
$display("Size of the d_arr1 = %d", d_arr1.size);
d_arr1 = {1, 3, 5, 7, 9};
$display("Values of d_arr1 = %p", d_arr1);
d_arr2 = new[10] (d_arr1);
d_arr2 = {2,4,6,8,10};
$display("Size of the d_arr1 = %d", d_arr2.size);
$display("Values of d_arr1 = %p", d_arr2);
d_arr1.delete();
$display("Size of the d_arr = %d", d_arr1.size);
end
endmodule

Analyse the code and comment your output

3 |

Go To Top