say the following declaration is correct nr not.
int b=a,n=0;
Answer Posted / kani
wrong
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
Is fortran still used in 2018?
Explain the array representation of a binary tree in C.
What is the explanation for cyclic nature of data types in c?
What are the 4 data types?
Are the variables argc and argv are always local to main?
How can I call fortran?
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); }
Explain how do you declare an array that will hold more than 64kb of data?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is the importance of c in your views?
What is the use of c language in real life?
What is structure in c definition?
What is the use of getchar() function?
Write a program to print factorial of given number without using recursion?