What is the general form of #line preprocessor?
No Answer is Posted For this Question
Be the First to Post Answer
Why c is known as a mother language?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
How can I call fortran?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
Is c pass by value or reference?
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??
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
Are the outer parentheses in return statements really optional?
Is c procedural or object oriented?
When should we use pointers in a c program?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
Explain the Difference between the New and Malloc keyword.