What are disadvantages of C language.
No Answer is Posted For this Question
Be the First to Post Answer
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
what do the 'c' and 'v' in argc and argv stand for?
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
Why is the code below functioning. According to me it MUST NOT.
what is the difference between i++ and ++i?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
How will you divide two numbers in a MACRO?
How do you convert strings to numbers in C?
Why isn't any of this standardized in c? Any real program has to do some of these things.
What would be an example of a structure analogous to structure c?
Program to find largest of three numbers without using comparsion operator?
whats the use of header file in c?