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 33837#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 47864fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
NDS,
17 22015#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 11056is anybody upload more than 100mb file using PHP upload script in ONLINE SERVER (using .htaccess file)? please give some idea...
1 6485What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
2 9399
What is cache drupal?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What is the difference between public and private data members?
What are blocks in drupal?
how do you programme Carrier Sense Multiple Access
How do I use strcmp?
How do you split a string in python?
What are the template tags?
How is it possible to share global variables across various modules?
How many columns can be added in a table in mysql?
What is south in django?
Explain the use of keyword 'register' with respect to variables.
Is wordpress.com more secure than wordpress.org?
How many constructors are available in Kotlin?
Tell me is null always defined as 0(zero)?