How are variables declared in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the following program main();{printf ("chennai""superkings"}; a. Chennai b. superkings c. error d. Chennai superkings
a simple c program using 'for' loop to display the output 5 4 3 2 1
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
What is wrong with this code?
What is the description for syntax errors?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
What does node * mean?
Explain the binary height balanced tree?
what is the advantage of software development
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.