What are keywords c?
No Answer is Posted For this Question
Be the First to Post Answer
The variables are int sum=10,SuM=20; these are same or different?
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
What are disadvantages of C language.
Write a program in C to reverse a number by recursive function?
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
What is the default value of local and global variables in c?
Write a C program to perform some of the operation which can be performed using Single linked list
Explain the difference between struct and union.
What are the advantages of using linked list for tree construction?
Why is C language being considered a middle level language?
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?