摘要: What is Apache Kafka? 卡夫卡 Apache Kafka is a distributed streaming platform. A streaming platform has three key capabilities: Publish and subscribe to 阅读全文
posted @ 2019-10-19 15:46 Poission 阅读(119) 评论(0) 推荐(0) 编辑
摘要: Binary to Decimal in C++ To convert binary to decimal in C++ Programming, you have to ask to the user to enter any number in binary to convert it into 阅读全文
posted @ 2019-05-28 16:30 Poission 阅读(193) 评论(0) 推荐(0) 编辑
摘要: C++ allows you to pass a pointer to a function. To do so, simply declare the function parameter as a pointer type. Following a simple example where we 阅读全文
posted @ 2019-05-25 10:46 Poission 阅读(143) 评论(0) 推荐(0) 编辑
摘要: As we have seen in last chapter how C++ allows to return an array from a function, similar way C++ allows you to return a pointer from a function. To 阅读全文
posted @ 2019-05-25 10:46 Poission 阅读(173) 评论(0) 推荐(0) 编辑
摘要: Two Dimensional Array Program in C++ Two dimensional (2D) array can be made in C++ programming language by using two for loops, first is outer for loo 阅读全文
posted @ 2019-05-24 16:23 Poission 阅读(294) 评论(0) 推荐(0) 编辑
摘要: Delete Element from Array in C++ To delete element from an array in C++ programming, you have to first ask to the user to enter the array size then as 阅读全文
posted @ 2019-05-23 13:39 Poission 阅读(340) 评论(0) 推荐(0) 编辑
摘要: Generate Armstrong Numbers in C++ To generate Armstrong numbers in C++ programming, you have to ask to the user to enter the interval to print the Arm 阅读全文
posted @ 2019-05-23 09:16 Poission 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Check Palindrome or Not in C++ To check for palindrome i.e., whether entered number is palindrome or not in C++ programming, you have to first ask fro 阅读全文
posted @ 2019-05-23 08:45 Poission 阅读(168) 评论(0) 推荐(0) 编辑
摘要: To print Fibonacci series in C++ programming, you have to ask from the user to enter total number of terms that he/she want to print fibonacci series 阅读全文
posted @ 2019-05-22 16:29 Poission 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Print Pascal Triangle in C++ To print pascal triangle in C++ programming, you have to ask to the user to enter the number of line (upto which he/she w 阅读全文
posted @ 2019-05-22 13:59 Poission 阅读(113) 评论(0) 推荐(0) 编辑