What is the difference between near, far and huge pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Is c weakly typed?
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
What is restrict keyword in c?
what is the difference between structural,object based,object orientd programming languages?
Can 'this' pointer by used in the constructor?
Explain the array representation of a binary tree in C.
What is a stream?
What is the use of bit field?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
Why does notstrcat(string, "!");Work?