What are local variables c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between printf and scanf in c?
Write a program in c to print 1 121 12321 1234321 123454321
11 Answers ANR, College School Exams Tests, Mu Sigma, Wipro,
what is the difference between. system call and library function?
Explain Doubly Linked Lists?
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 of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
Can the size of an array be declared at runtime?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
How pointers are declared?
What are called c variables?
how to write a program which adds two numbers without using semicolon in c
write a program which will count occurance of a day between two dates.