Differentiate between ordinary variable and pointer in c.
No Answer is Posted For this Question
Be the First to Post Answer
Can an array be an Ivalue?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
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?
Why cd or dvd are round why not square.
Explain what are bus errors, memory faults, and core dumps?
how to make program without <> in library.
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
How can you print HELLO WORLD without using "semicolon"?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
What is the equivalent code of the following statement in WHILE LOOP format?
inline function is there in c language?