Answer Posted / naresh lingampally
What is this null string;
array addresses would be a[0]..a[11] if i am not wrong ...
so a[11] accepts(can store) up to 11 character elements
so can any one explain.....
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Explain what standard functions are available to manipulate strings?
What is the code for 3 questions and answer check in VisualBasic.Net?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is string in c language?
Is null valid for pointers to functions?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
What is c method?
What is #define used for in c?
What are runtime error?
What is calloc in c?
What is integer constants?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Explain can you assign a different address to an array tag?