Which node is more powerful and can handle local information processing or graphics processing?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c to read array check element is present or not?
what is the use of call back function in c?tell me with example
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
what is the difference between declaration and definition of a variable or function ?
WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............
how we do lcm of two no using c simple if while or for statement
What does stand for?
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
Are the variables argc and argv are local to main?
name the language for writing c compiler?
why do we use pointer instead directly acessing the data?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.