What are pointers? What are different types of pointers?
No Answer is Posted For this Question
Be the First to Post Answer
What type of function is main ()?
What are the types of variables in c?
c program for searching a student details among 10 student details
Explain why c is faster than c++?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
how to find binary of number?
Is main() function predfined or userdefined?
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
program for reversing a selected line word by word when multiple lines are given without using strrev
Why preprocessor should come before source code?