Answer Posted / satya.babi
computing language
| Is This Answer Correct ? | 28 Yes | 7 No |
Post New Answer View All Answers
What is the description for syntax errors?
Write a program that accept anumber in words
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 difference between class and structure?
How can you restore a redirected standard stream?
Can you return null in c?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
How many types of operator or there in c?
What is data structure in c language?
What is the concatenation operator?
What is difference between structure and union in c programming?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Is malloc memset faster than calloc?