How are Structure passing and returning implemented by the complier?
No Answer is Posted For this Question
Be the First to Post Answer
What is pointer to pointer in c language?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Program to find the sum of digits of a given number until the sum becomes a single digit
How do you convert strings to numbers in C?
Is main() function predfined or userdefined?
is it possible to create your own header files?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Write a program for Overriding.
Dont ansi function prototypes render lint obsolete?
Explain what is a pragma?
Can we change the value of constant variable in c?
what is the difference between #include<stdio.h> and #include"stdio.h" ?