Explain pointer. What are function pointers in C?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
Not all reserved words are written in lowercase. TRUE or FALSE?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
why we need function pointers?
How to create struct variables?
What is the memory allocated by the following definition ? int (*x)();
second highest number in a given set of numbers
What is meant by keywords in c?
how to print "hai" in c?
What are variables c?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.