Do pointers take up memory?
No Answer is Posted For this Question
Be the First to Post Answer
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
what do you mean by enumeration constant?
how to print this sereis 2 4 3 6 5..........?
while initialization of array why we use a[][2] why not a[2][]...?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com
What is a static function in c?
What is void main ()?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
How do I use strcmp?