main()
{
int arr[5]={23,67};
printf("%d%d%d",arr[2],arr[3],arr[4]);
}
Answer Posted / abhisheksingh462
000
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is an lvalue?
What is the basic structure of c?
What is return type in c?
What is the use of a semicolon (;) at the end of every program statement?
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.
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
What is union and structure in c?
Can math operations be performed on a void pointer?
What is wild pointer in c?
What is the value of c?
is it possible to create your own header files?
What is storage class?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What is the difference between call by value and call by reference in c?