1,123 views

1 Answer

1 votes
1 votes
scanf returns the number of items successfully scanned -- but this is out of GATE scope.

Related questions

2 votes
2 votes
1 answer
2
Prayag asked Jul 16, 2018
440 views
#include <stdio.h void f(char ); int main() { char *argv[] = { "ab", "cd", "ef", "gh", "ij", "kl" }; f(argv); return 0; } void f(char p) { char *t; t...
2 votes
2 votes
1 answer
3
Sugumaran asked Feb 7, 2018
482 views
#include<stdio.h int main() { int x=191; char *p; p=(char*)&x; printf("%d",*p); }explain it
1 votes
1 votes
1 answer
4
hacker16 asked Jan 21, 2018
268 views
which function will going to be call first?x = f1() + f2()is it compiler dependent ?