what's the o/p
int main(int n, char *argv[])
{
char *s= *++argv;
puts(s);
exit(0);
}
Answer / sreed
first command line argument
lets say..
exe for above prog is a.out
execute command
a.out arg1 arg2 arg3
then out put will be arg1
Is This Answer Correct ? | 1 Yes | 1 No |
can a union be self-referenced?
What is && in c programming?
how to find sum of 5 digits in C?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
Can a pointer be volatile in c?
c program to print a name without using semicolon
what is uses of .net
what is the difference between malloc() and calloc() function?
Explain what will the preprocessor do for a program?
wat is the difference between array and pointer?
which type of aspect you want from the student.
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?