Can a pointer be static?
No Answer is Posted For this Question
Be the First to Post Answer
How do you print only part of a string?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
What are enums in c?
Why clrscr is used after variable declaration?
How can I manipulate individual bits?
What are linked lists in c?
print ur name without using any semicolon in c/c++....
21 Answers Bosch, TCS, Wipro,
who will call your main function in c under linux?
write a c program to find the sum of five entered numbers using an array named number
What is the significance of an algorithm to C programming?
print the following using nested for loop. 5 4 3 2 1 1 2 3 4 3 2 1 1 2 1 2 1 1 2 3 4 3 2 1 1 2 3 4 5
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?