Where static variables are stored in memory in c?
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
Explain the use of keyword 'register' with respect to variables.
What is a global variable in c?
How can I open a file so that other programs can update it at the same time?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
list the no of files created when c source file is compiled
Can a variable be both const and volatile?
What is pointer to pointer in c?
difference between native and cross compilers
which is faster execution: loops or recursion?