What is character set?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different data types in C?
difference of two no's with out using - operator
What are dangling pointers in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
What are pointers? Why are they used?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
Explain that why C is procedural?
how to find out the reverse number of a digit if it is input through the keyboard?
What is the difference between struct and union in C?
How does free() know explain how much memory to release?
How does free() know how many bytes to free?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above