Explain why can’t constant values be used to define an array’s initial size?
No Answer is Posted For this Question
Be the First to Post Answer
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
how to convert an char array to decimal array
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.
What are pointers in C? Give an example where to illustrate their significance.
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
what is c?
What does s c mean in text?
What are integer variable, floating-point variable and character variable?
What does p mean in physics?
what is Structural oriented language? give some example of this language.....?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
Write a code to reverse string seperated by spaces i/p str=India is my country o/p str=aidnI si ym yrtnuoc After writing code, optimize the code