What does char * * argv mean in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What are the different file extensions involved when programming in C?

0 Answers  


What is a node in c?

0 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


To what value do nonglobal variables default? 1) auto 2) register 3) static

4 Answers  


write a program to count the no of repaeted words in a line?

1 Answers  






What does extern mean in a function declaration?

4 Answers  


why in C,C++'s int size is 2 byte and .net(c#) int Size is 4 byte?

2 Answers  


What are variables c?

0 Answers  


Explain function?

0 Answers  


Differentiate between functions getch() and getche().

0 Answers  


What are data types in c language?

0 Answers  


What does the characters “r” and “w” mean when writing programs that will make use of files?

0 Answers  


Categories