What does char * * argv mean in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are macros in C?
How can I automatically locate a programs configuration files in the same directory as the executable?
Why do we use pointer to pointer in c?
What are identifiers and keywords in c?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
What is 2c dna?
what is the meaning of 'c' language
write a program of palindrome(madam=madam) using pointer?
Why shouldn’t I start variable names with underscores?
What is cohesion and coupling in c?