What is array within structure?
No Answer is Posted For this Question
Be the First to Post Answer
what type of questions arrive in interview over c programming?
Write a program that an operator and two operands read from input operand operator on the implementation and results display.
write a program wch produces its own source code aas its output?
What are identifiers c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is the difference between typedef struct and struct?
What are the two types of structure?
program to locate string with in a string with using strstr function
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
Can we change the value of constant variable in c?
What is array in C
write a program to compare 2 numbers without using logical operators?