831 views

1 Answer

Related questions

0 votes
0 votes
3 answers
1
OneZero asked Jan 21, 2019
995 views
int main(){int a = 10;fun(a);}void fun(int a){printf(“%d”,a);}Which phase of the compiler will raise an error?Lexical syntaxsemanticsnone of the above
0 votes
0 votes
1 answer
2
Shubhanshu asked Jun 12, 2017
925 views
When I compiled this program in two different compiler then I got two different result why it is so?#include <iostream>#include <stdio.h>using namespace std;int main() { ...
0 votes
0 votes
0 answers
4
rahul sharma 5 asked Oct 13, 2017
1,337 views
Find the C statement which has a syntax error.fi(z);for(a, b, c);whil(a, b);fi (z);for (a, b, c);whil (a, b);None of these.This is a modification of https://gateoverflow....