Answer Posted / suganya.s
C is a structured, procedural programming language.C has
been standardized as part of the Portable Operating system.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the process to generate random numbers in c programming language?
How do you define a string?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
i have a written test for microland please give me test pattern
write a program to rearrange the array such way that all even elements should come first and next come odd
What is linear search?
What is an endless loop?
What is the difference between memcpy and memmove?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
how can use subset in c program and give more example
What are pragmas and what are they good for?
What is a method in c?
Write a program to reverse a given number in c language?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
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 “****”.