Does c have an equivalent to pascals with statement?
No Answer is Posted For this Question
Be the First to Post Answer
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
to find the program of matrix multiplication using arrays
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
What is hungarian notation? Is it worthwhile?
In c programming language, how many parameters can be passed to a function ?
What are pragmas and what are they good for?
write a program for odd numbers?
what is link list?
How do you initialize pointer variables?
print 1-50 with two loop & two print Statement