Who invented bcpl language?
No Answer is Posted For this Question
Be the First to Post Answer
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
what is the output of below int n=10; (n++)++; printf("%d",n);
If errno contains a nonzero number, is there an error?
what is link list?
Which programming language is best for getting job 2020?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
Describe dynamic data structure in c programming language?
application of static variables in real time
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
What is the difference between fork() and vfork()?
Explain what standard functions are available to manipulate strings?