Answer Posted / tushar prwe
C IS A TOP DOWN PROCEDURAL LANGUAGE IN WHICH PROGRAMER CAN
DIRECTLY INTERECT WITH THE MEMORY THROGH POINTERS.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What do you mean by a local block?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
#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 variable declaration and definition in c?
What does int main () mean?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What do you mean by scope of a variable in c?
Is there any demerits of using pointer?
Why main is not a keyword in c?
write a program to display all prime numbers
What is double pointer?
What is ponter?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Which function in C can be used to append a string to another string?
Explain why can’t constant values be used to define an array’s initial size?