Write a function that will take in a phone number and output all possible alphabetical combinations
No Answer is Posted For this Question
Be the First to Post Answer
what is computer
When should the register modifier be used? Does it really help?
Write a C program to convert an integer into a binary string?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
What are the uses of pre-processor directives?
What is the use of function in c?
What is define c?
Explain indirection?
Which command is more efficient? *(ptr+1) or ptr[1]
how can i get output like this? 1 2 3 4 5 6
What is the difference between scanf and fscanf?