#include<stdio.h>
#include<conio.h>
void main()
{
int m=0111,n=20;
printf("%d%d\n",m,n);
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 “****”.
Is Exception handling possible in c language?
What is new line escape sequence?
Write a programe print the sum of series 0,1,2,.....10
what is call by value and call by reference
Write any data structure program (stack implementation)
swapping of two numbers without using third variable using AND and OR operators
what is the stackpointer
Is c# a good language?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?