What is a method 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 are the main characteristics of c language describe the structure of ac program?
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
how to write palindrome program?
What is meant by errors and debugging?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
how many error occurs in C language ?
Why does this code crash?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
how can we use static and extern?and where can we use this?
list the no of files created when c source file is compiled