What is the difference between far and near in c?
No Answer is Posted For this Question
Be the First to Post Answer
How is a null pointer different from a dangling pointer?
Determine if a number is a power of 2 at O(1).
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
with out using main how to execute the program?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
Are c and c++ the same?
What are the advantages and disadvantages of c language?
#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 class and object in c?
What are the advantages of Macro over function?
What is the relation between # and include<stdio.h>
When c language was developed?