Is c easy to learn?
No Answer is Posted For this Question
Be the First to Post Answer
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
wt is d full form of c
Are comments included during the compilation stage and placed in the EXE file as well?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
write a program to delete an item from a particular location of an linear array?
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
What is difference between constant pointer and constant variable?
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 call by reference in functions?
How do I send escape sequences to control a terminal or other device?
1. main() { printf("%d",printf("HelloSoft")); } Output?
What is a pointer and how it is initialized?