Do you know pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why is it that not all header files are declared in every C program?
What is an identifier?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
When c language was developed?
Explain why can’t constant values be used to define an array’s initial size?
what is difference between getchar,putchar functions and printf and scanf function? does putchar show output only when input given to it
What is variable in c with example?
Hai why 'c' is the middle language
What is hungarian notation? Is it worthwhile?
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
Explain a file operation in C with an example.
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }