What are type modifiers in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is extern c used for?
what are the stoge class in C and tel the scope and life time of it?
What is pointers in c?
What is ctrl c called?
logic for x=y^n
Calculate 1*2*3*____*n using recursive function??
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
What is a C array and illustrate the how is it different from a list.
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
How many types of arrays are there in c?
Explain the difference between #include "..." And #include <...> In c?
write a own function to compare two strings with out using stringcomparition function?