What is c definition?
No Answer is Posted For this Question
Be the First to Post Answer
How can I access a memory located at certain address?
Compare interpreters and compilers.
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
how to find out the reverse number of a digit if it is input through the keyboard?
write an interactive program to generate the divisors of a given integer.
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
Can I pass constant values to functions which accept structure arguments?
what is the difference between class and unio?
What is scanf () in c?
What is union in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
Explain what will the preprocessor do for a program?