Explain why can’t constant values be used to define an array’s initial size?
No Answer is Posted For this Question
Be the First to Post Answer
can we have joblib in a proc ?
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
where does malloc() function get the memory?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
what is software?
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
Explain what are multidimensional arrays?
Explain the use of #pragma exit?
What is c programing language?
How do you determine the length of a string value that was stored in a variable?
What is a char in c?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);