What is the argument of a function in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is header file definition?
write c program to display output 10(10+20)+(10+20+30)+ ... n term
0 Answers Hindustan Gum Chemicals,
c program for searching a student details among 10 student details
simple c program for 12345 convert 54321 with out using string
What 'lex' does?
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Explain indirection?
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?
program for following output using for loop? 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
What is meant by type specifiers?
why do we use # in c-language?
What are 'near' and 'far' pointers?