printf("%d",(printf("Hello")); What it returns?
Answer Posted / bhavesh kashikar
072
| Is This Answer Correct ? | 1 Yes | 19 No |
Post New Answer View All Answers
What is a shell structure examples?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Can the “if” function be used in comparing strings?
Why do some versions of toupper act strangely if given an upper-case letter?
What are categories used for in c?
What is structure and union in c?
What are shell structures used for?
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What is c++ used for today?
How can I write functions that take a variable number of arguments?
What is optimization in c?
What are the functions to open and close file in c language?