A program to write a number of letters and numbers, such as counting and display
Write a program to print ASCII code for a given digit.
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
What is the difference between GETS();AND SCANF();
How to receive strings with spaces in scanf()
write a c program to find largest of three numbers using simple if only for one time.
What are pointers? What are stacks and queues?
Why void main is used in c?
Write a program for Overriding.
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }