How to reverse a string using a recursive function, without swapping or using an extra memory?
31 104552#include
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
5 9829int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
TCS,
4 12851
Explain two-dimensional array.
What is static identifier?
Differentiate between the = symbol and == symbol?
Can the “if” function be used in comparing strings?
What are the characteristics of arrays in c?
Explain the difference between structs and unions in c?
what is the format specifier for printing a pointer value?
What is the right type to use for boolean values in c? Is there a standard type?
What are the application of void data type in c?
What is the difference between a string and an array?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Can an array be an Ivalue?
How can you invoke another program from within a C program?
How can I automatically locate a programs configuration files in the same directory as the executable?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.