C LANGUAGE CLASS NEAR S.P.RING ROAD AHMEDABAD
TCCI > C LANGUAGE CLASS NEAR S.P.RING ROAD AHMEDABAD
24
Aug
Learn Blazor Framework at TCCI.
https://youtu.be/shB7sAQEaZw
21
Aug
What is void in C?
https://youtu.be/iCuLB-BXvBo
21
Aug
What is void in C?
In C programming, void is a keyword that indicates the absence of a type or value. It is used in several contexts: c Copy code void myFunction() { // code } c Copy code void *ptr; int x = 10; ptr = &x; c Copy code int *intPtr = (int *)ptr; printf(“%d”, *intPtr); // […]