What is register variable in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
code for selection sort?
How old is c programming language?
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
How many types of errors are there in c language? Explain
convert 0.9375 to binary
what is mean by Garbage collection ? Please answer me. Advance thanks.
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
What is malloc and calloc?
Write a program in C to reverse a number by recursive function?
How do you write a program which produces its own source code as its output?