what is ur strangth & weekness
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between the expression “++a” and “a++”?
write a program to gat the digt sum of a number (et. 15= >1+5=6)
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
Is that possible to store 32768 in an int data type variable?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
Why c is called procedure oriented language?
What is a void pointer in c?
For what purpose null pointer used?
What are the various topologies? Which one is the most secure?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
what is the function of pragma directive in c?
What is the purpose of realloc()?