Why c is called free form language?
No Answer is Posted For this Question
Be the First to Post Answer
what is difference between #include<stdio.h> and #include"stdio.h"
What is optimization in c?
Differentiate between the = symbol and == symbol?
Define the scope of static variables.
What is a function simple definition?
what is pointer?
13 Answers HCL, TCS,
code for selection sort?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What is break in c?
can you change name of main()?how?
Why void main is used in c?
What are dangling pointers?