What is nested structure with example?
No Answer is Posted For this Question
Be the First to Post Answer
When we use void main and int main?
What are the string functions? List some string functions available in c.
how to display 2-D array elements in spiral
Explain the difference between the local variable and global variable in c?
What does the c in ctime mean?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
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 are the types of i/o functions?
Explain the red-black trees?
What is pointer in c?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
Describe how arrays can be passed to a user defined function