What is meant by keywords in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
What is c standard library?
What is function pointer c?
What is macro?
How can you find the exact size of a data type in c?
Total of how many functions are available in c?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the difference between variable declaration and variable definition in c?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type
What are the advantages and disadvantages of c language?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }