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


Please Help Members By Posting Answers For Below Questions

What is an lvalue?

728


What is the basic structure of c?

658


What is return type in c?

751


What is the use of a semicolon (;) at the end of every program statement?

925


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.

1953






void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1348


#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??

1637


What is union and structure in c?

721


Can math operations be performed on a void pointer?

670


What is wild pointer in c?

715


What is the value of c?

670


is it possible to create your own header files?

718


What is storage class?

750


hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..

1566


What is the difference between call by value and call by reference in c?

746