Synonymous with pointer array
a) character array
b) ragged array
c) multiple array
d) none
No Answer is Posted For this Question
Be the First to Post Answer
how many times does the loop iterated ? for (i=0;i=10;i+=2) printf("Hi\n");
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
give one ip, find out which contry
How do you generate random numbers in C?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
What is nested structure?
When we use void main and int main?
Why is struct padding needed?
How can I find the modification date of a file?
What are structure types in C?
what is the role you expect in software industry?
Can a void pointer point to a function?