1,4,8,13,21,30,36,45,54,63,73,?,?.
Answer Posted / arun
81,91
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is spark map function?
How can you avoid including a header more than once?
What does sizeof function do?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is string constants?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is union in c?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
What is the basic structure of c?
What is the difference between text and binary modes?
How do you search data in a data file using random access method?
Describe the modifier in c?
what does static variable mean?
What is volatile c?
Differentiate between Macro and ordinary definition.