What does malloc () calloc () realloc () free () do?
No Answer is Posted For this Question
Be the First to Post Answer
What are preprocessor directives in c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
what is the use of a array in c
What are run-time errors?
What is the difference between static and global variables?
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
Write a C program to get the desired output. 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 . . . 1 n..............n 1 Note: n is a positive integer entered by the user.
What is wrong with this initialization?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
Program to find the absolute value of given integer using Conditional Operators
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 “****”.