Need call vkGetDeviceProcAddr for vkAcquireNextImageKHR and vkQueuePresentKHR ?

Need call vkGetDeviceProcAddr for vkAcquireNextImageKHR and vkQueuePresentKHR
Or not needed ?

Yes, the swapchain is an extension and as such you need to get the function pointers using e.g. vkGetDeviceProcAddr.

Strange i simple use vkAcquireNextImageKHR and vkQueuePresentKHR from Vulkan-1.dll without vkGetDeviceProcAddr for vkAcquireNextImageKHR and vkQueuePresentKHR
And work in my case.

That may work with your implementation and on the operating system you’re running, but it’s no guarantee. It’s an extension and such it’s advised to get the function pointers before using them.

Actually, the official Vulkan loader is supposed to guarantee WSI being loaded (on specified platforms).

Vulkan Documentation and Extensions: Procedures and Conventions ch. 3.14:

The Vulkan API loader for Android, Linux, and Windows exports functions for all core Vulkan API commands, and for a set of WSI extension commands that are applicable to those operating systems […]