Answer Posted / thunder
Using argument vector and argument count with main.
Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What's the right way to use errno?
What does %p mean?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Is null always defined as 0(zero)?
What are linked lists in c?
Explain what is dynamic data structure?
What is a stream in c programming?
Is c call by value?
What is function prototype in c language?
#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); }
c program to compute AREA under integral
How is a null pointer different from a dangling pointer?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What does the c preprocessor do?
What is file in c preprocessor?