Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
DSA
22.8K+ articles
C++
4.3K+ articles
C Language
1.8K+ articles
Recursion
1.0K+ articles
C Programs
705+ articles
GATE-CS-2003
5+ articles
GATE-CS-2000
3+ articles
GATE-CS-2002
3+ articles
GATE-CS-2001
2+ articles
GATE-CS-C-Language
12 posts
Recent Articles
Popular Articles
Finite and Infinite Recursion with examples
Last Updated: 27 January 2023
The process in which a function calls itself directly or indirectly is called Recursion and the corresponding function is called a Recursive function.Using Recursion, cert...
read more
GATE-CS-C-Language
Recursion
C Language
C++
DSA
Program and syntax for iscntrl(int c) function in C
Last Updated: 31 May 2021
In C, iscntrl() is a predefined function used for string and character handling. ctype is the header file required for character functions. A control character is one that...
read more
GATE-CS-C-Language
C Programs
C Language | Set 10
Last Updated: 14 December 2022
Following questions have been asked in GATE CS 2014 exam.1) Consider the following program in C language:[tabby title="C"][sourcecode language="C"]#include stdio.hmain(){ ...
read more
GATE-CS-C-Language
GATE-CS-2014
C Language
C Language | Set 9
Last Updated: 13 December 2022
Following questions have been asked in GATE 2012 exam.1. What will be the output of the following C program segment?[tabby title="C"][sourcecode language="C"] char in...
read more
GATE-CS-C-Language
GATE-CS-2012
C Language
C Language | Set 8
Last Updated: 13 December 2022
Following questions have been asked in GATE CS 2011 exam. 1) What does the following fragment of C-program print?[sourcecode language="C"] char c[] = GATE2011; char *p =...
read more
GATE-CS-C-Language
GATE-CS-2011
C Language
C Language | Set 7
Last Updated: 13 December 2022
Following questions have been asked in GATE CS 2010 exam. 1. What does the following program print? [sourcecode language="C"]#includestdio.hvoid f(int *p, int *q){ p = q;...
read more
GATE-CS-C-Language
GATE-CS-2010
C Language
C Language | Set 6
Last Updated: 27 March 2017
Following questions have been asked in GATE CS 2006 exam. 1. Consider the following C-program fragment in which i, j and n are integer variables.[sourcecode language="C"]f...
read more
GATE-CS-C-Language
GATE-CS-2006
C Language
C Language | Set 5
Last Updated: 27 March 2017
Following questions have been asked in GATE CS 2008 exam. 1. What is printed by the following C program?[sourcecode language="C"]int f(int x, int *py, int **ppz){ int y,...
read more
GATE-CS-2008
GATE-CS-C-Language
C Language
C Language | Set 4
Last Updated: 13 December 2022
Following questions have been asked in GATE CS exam. 1. In the C language (GATE CS 2002)a) At most one activation record exists between the current activation record a...
read more
GATE-CS-C-Language
GATE-CS-2002
GATE-CS-2003
C Language
C Language | Set 3
Last Updated: 09 April 2018
Following questions have been asked in GATE CS exam. 1.Assume the following C variable declaration int *A [10], B[10][10]; Of the following expressions I A[2] II A...
read more
GATE-CS-C-Language
GATE-CS-2002
GATE-CS-2003
GATE-CS-2005
GATE-CS-2000
C Language
C Language | Set 2
Last Updated: 27 March 2017
Following questions have been asked in GATE CS exam. 1. Consider the following C program segment:[sourcecode language="c"]char p[20];char *s = string;int length = strlen(s...
read more
GATE-CS-C-Language
GATE-CS-2004
C Language
C Language | Set 1
Last Updated: 07 October 2021
Following questions have been asked in GATE CS exam.1. Consider the following three C functions : [sourcecode language="c"][PI] int * g (void) { int x = 10; return (x)...
read more
GATE-CS-C-Language
GATE-CS-2000
GATE-CS-2001
C Language
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !