What are register variables in c?
How does free() know explain how much memory to release?
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
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?
Explain can static variables be declared in a header file?
How do you write a program which produces its own source code as its output?
program to convert a integer to string in c language'
Why should I use standard library functions instead of writing my own?
Write a program to print “hello world” without using semicolon?
What is difference between union All statement and Union?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
Add Two Numbers Without Using the Addition Operator