Explain how to reverse singly link list.
Explain argument and its types.
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
What does main () mean in c?
Explain how do you search data in a data file using random access method?
there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?
char *p="name"; printf(p);
Tell us the difference between these two : #include"stdio.h" #include<stdio.h> define in detial.
why ordinary variable store the later value not the initial
In how much time you will write this c program? Prime nos from 1 to 1000
how to write hello word without using semicolon at the end?
What are the key features in c programming language?