Who invented bcpl language?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What is enumerated data type in c?
no consistent academics. how to answer the question
write a program wch produces its own source code aas its output?
application of static variables in real time
Explain the properties of union.
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Function calling procedures? and their differences? Why should one go for Call by Reference?
size maximum allocated by calloc()
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
A program to write a number of letters and numbers, such as counting and display
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.