what's the o/p
int main(int n, char *argv[])
{
char *s= *++argv;
puts(s);
exit(0);
}



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

Post New Answer

More C Interview Questions

can a union be self-referenced?

1 Answers  


What is && in c programming?

0 Answers  


how to find sum of 5 digits in C?

4 Answers  


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;

5 Answers   Accenture, TCS,


Can a pointer be volatile in c?

0 Answers  


c program to print a name without using semicolon

9 Answers   TCS, Wipro,


what is uses of .net

0 Answers  


what is the difference between malloc() and calloc() function?

1 Answers  


Explain what will the preprocessor do for a program?

0 Answers  


wat is the difference between array and pointer?

4 Answers   Wipro,


which type of aspect you want from the student.

0 Answers   IBM, TCS,


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 )?

1 Answers   TCS,


Categories