What is variable declaration and definition in c?
Write a code of a general series where the next element is the sum of last k terms.
What is the restrict keyword in C?
two variables are added answer is stored on not for third variable how it is possible?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
logic for x=y^n
Is exit(status) truly equivalent to returning the same status from main?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
What is your favorite subject?
1 Answers Ericsson, Invendis, Tech Mahindra,
what is different between auto and local static? why should we use local static?
What is character constants?
explain what are actual arguments?
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); }