What does a function declared as pascal do differently?
How was c created?
What is a nested loop?
What is that continue statement??
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Can include files be nested?
Are the outer parentheses in return statements really optional?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
What is a nested formula?
What does volatile do?
What is the use of parallelize in spark?
What are the keywords in c?
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?