answersLogoWhite

0

Not that difficult...

int main (int argc, char **argv)

{

if (argc==1) printf ("No arguments\n");

else printf ("%d arguments\n", argc-1);

goto END;

END:

return 0;

}

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you break a loop in a switch case statement?

using break; statement


How do you write a c program to convert binary to decimal by using while statement?

write a c++ program to convert binary number to decimal number by using while statement


Write a program By using if else statement to read a number and check whether it is positive or negative?

write a c++program by using if statement to read a number and check whether it is positive or negative


Discount program using java switch case?

This is not a question.


Write a program that will graph using for loop?

A = 5do{statement;A = A + 1;} while (A < 10)


How do you write a program using the gotoxy statement and print function to display letters of the alphabet on the computer screen?

There is no gotoxy statement in C.


Write a C program to declare result of a student using multilevel?

This is a statement with a question mark?


Write a program large number and small number among n numbers by using If statement?

12


How can you accept sum and print numbers without creating variables?

It is very easy. The program begins here..... /*Program to sum and print numbers without creating variables*/ #include&lt;stdio.h&gt; main() { clrscr(); printf("%d+%d=%d",5,2,5+2); getch(); } /*Program ends here*/ Now just by changing the numbers in the "printf" statement we can add, subtract, multiply and divide the numbers without using variables. Hence the problem is solved..........


I am using Borland C compiler and making a program using switch cases while loading program I'm getting error that case bypasses initialization of a local variable case 4?

You cannot declare variables inside a case label. Declare them outside of the switch.


Program for create a student detail in a table using HTML?

Oracle is a great program for creating a student detail in a table using HTML. One can even use a word processing platform too.


Can you print string without using semi column in printf statement in c programming?

If you forget the semicolon, your program won't compile.