What do you mean by scope of a variable in c?
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
which is the best site or book for learning C...and i need the content for C..how to get the good programming skills....? can plz suggest me....
Are the variables argc and argv are local to main?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(“ %d\n”,sum); } what is the difference between a=10 and a=010??
What are the types of assignment statements?
What is include directive in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
How do you determine the length of a string value that was stored in a variable?
Explain how can I avoid the abort, retry, fail messages?
What is null pointer in c?
What are valid signatures for the Main function?