Left Sidebar
Showing posts with the label C++Show all
Simple Programming Questions-1
Champak Roy
Friday, September 08, 2023
Simple Programming Questions-1 Certainly, here's a set of programming questions without specifying any particular programming language: **Question 1:** Write a function to find the factorial of a…
Function Pointers in C and C++
Champak Roy
Friday, July 15, 2022
Function Pointers in C and C++ A short program illustrating function pointers in C and C++. //This program illustrates the use of function pointers in C and C++. #include<stdio.h> #include<c…
Format Specifiers in C
Champak Roy
Thursday, February 04, 2021
The C Language has the following format specifiers. - specifies left alignment, otherwise we have right alignment. %c prints characters %d and %i for integers %o for octal %x, %X for hexadecimal %s …