What will the preprocessor do for a program?
No Answer is Posted For this Question
Be the First to Post Answer
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What does calloc stand for?
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }
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 “****”.
suppose there are five integers write a program to find larger among them without using if- else
What is the difference between break and continue?
Code for calculating square root without using library function, of math.h
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
What does 3 mean in texting?
write a proram to reverse the string using switch case?
What are the general description for loop statement and available loop types in c?
What are the rules for the identifier?