Explain how many levels deep can include files be nested?
No Answer is Posted For this Question
Be the First to Post Answer
Can a pointer point to null?
write a program to print largest number of each row of a 2D array
How many levels of pointers have?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
Which is better malloc or calloc?
What are different storage class specifiers in c?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
What is the difference between the local variable and global variable in c?
What is structure packing in c?
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
What is ambagious result in C? explain with an example.
Why main is not a keyword in c?