Can we use any name in place of argv and argc as command line arguments?
No Answer is Posted For this Question
Be the First to Post Answer
Can I initialize unions?
Program to find larger of the two numbers without using if-else,while,for,switch
What is a pointer in c?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
1. Write a program to reverse every second word in a given sentence.
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is 2 d array in c?
What is unary operator?
How would you print out the data in a binary tree, level by level, starting at the top?
Are there any problems with performing mathematical operations on different variable types?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
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.