How are Structure passing and returning implemented by the complier?
what are the general concepts of c and c++
how to add two numbers without using arithmetic operators?
How can I manipulate individual bits?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
Why doesn't the code "a[i] = i++;" work?
What is the scope of an external variable in c?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
write a program in c language to print your bio-data on the screen by using functions.
What is stack in c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
What is the use of header files?