What are external variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }
What is the modulus operator?
What are types of structure?
When is a void pointer used?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
explain about storage of union elements.
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Explain do array subscripts always start with zero?
How do shell structures work?
write a c program to find largest of three numbers using simple if only for one time.
Can you apply link and association interchangeably?
What is main void in c?