What is structure of c program?
No Answer is Posted For this Question
Be the First to Post Answer
What are the primitive data types in c?
what about "char *(*(*a[])())();"
Is it acceptable to declare/define a variable in a c header?
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 “****”.
difference between malloc and calloc
What is static identifier?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
write a c program to check weather a particluar bit is set or not?
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.
Is an array parameter is always "by reference" ?
What does %c mean in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.