What is the difference between array and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between the following 2 lines…. int temp = (int)(0x00); int temp = (0x00int);
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is a static function in c?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
1. main() { printf("%d",printf("HelloSoft")); } Output?
Whether there can be main inside another main?If so how does it work?
write a program wch produces its own source code aas its output?
Write a program for deleting duplicate elements in an array
main() { int i; printf("%d",i^i); }
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
What does malloc () calloc () realloc () free () do?
Differentiate between ordinary variable and pointer in c.