Python Related (3312)
PHP Related (7341)
Scala (340)
R Programming (396)
Kotlin (184)
Apache Groovy (39)
Ruby (245)
Go Programming Language (139)
Objective-C (429)
Programming Languages AllOther (746) main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 34662#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 48527fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
NDS,
17 22662#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
NDS,
6 11343is anybody upload more than 100mb file using PHP upload script in ONLINE SERVER (using .htaccess file)? please give some idea...
1 6586What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
2 9586
What is latest version of laravel?
How to Print in Delphi without using the TPrinter Unit ?
Name and explain five of the PHP error constants?
How would you display a file’s contents in reversed order?
How to create a web form?
How to Flush binary file from disk cache to disk ?
What is the latest version of joomla?
How will you create a field using code?
swap 2 numbers without using third variable?
How can you verify if a given object “X” is a matrix data object?
what is ur strangth & weekness
What is the type of the following Array?, val arr = arrayOf(1, 2, 3);
How much is the wordpress business plan?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Explain filters in zend framework with examples?