How to write a code for reverse of string without using
string functions?
No Answer is Posted For this Question
Be the First to Post Answer
How can you tell whether a program was compiled using c versus c++?
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 “****”.
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What math functions are available for integers? For floating point?
How many levels of indirection in pointers can you have in a single declaration?
0 Answers Agilent, ZS Associates,
What are actual arguments?
I want tcs placement papers of 2004-2009 , its urgent
Explain is it better to bitshift a value than to multiply by 2?
Write a program which returns the first non repetitive character in the string?
What do you understand by normalization of pointers?
What is array of structure in c programming?
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }