who is the father of C Language?
Answers were Sorted based on User's Feedback
What are the __date__ and __time__ preprocessor commands?
Write the Program to reverse a string using pointers.
what is the differance between pass by reference and pass by value.
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
Explain void pointer?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What is s or c?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
A program to allow an input operand and operator from the operator and read on the display and output operand.