What is a pointer and how it is initialized?
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
write a program that explain #define and # undef directive
Who is the founder of c language?
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
What is a file descriptor in c?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
write a program which counts a product of array elements lower than 10.
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.
Describe wild pointers in c?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
how to convert an char array to decimal array