6,049 views
0 0 votes

In the syllabus given by IISC, it just says Programming in C. But it doesn't mention about the subtopics.
As there are many topics are there in c like :
C - Overview
C - Environment Setup
C - Program Structure
C - Basic Syntax
C - Data Types
C - Variables
C - Constants
C - Storage Classes
C - Operators
C - Decision Making
C - Loops
C - Functions
C - Scope Rules
C - Arrays
C - Pointers
C - Strings
C - Structures
C - Unions
C - Bit Fields
C - Typedef
C - Input & Output
C - File I/O
C - Preprocessors
C - Header Files
C - Type Casting
C - Error Handling
C - Recursion
C - Variable Arguments
C - Memory Management
C - Command Line Arguments

But I don't know which of the above is enough for gate.

3 Answers

2 2 votes
Divide the syllabus into 4 categories:

1.Basics (data types,variables,constants,operators,storage class)

2.Control statements & functions (along with recursion)

3.Advanced topics(Array,string,pointers,structure,union)

4.Miscellaneous (bit operations,preprocessors,etc.)
1 1 vote

I guess  Arrays and Pointers...That should do it 
Mainly question will be from these two topics..
Rest all the Topics are pretty straightforward..

 

Position:
Show:

Related questions

0 0 votes
2 answers 2 answers
1.3k
1.3k views
Nitesh Choudhary asked Jun 5, 2017
1,322 views
which compiler use for gate c output problems?
2 2 votes
1 1 answer
2.5k
2.5k views
Nishi Agarwal asked Mar 10, 2019
2,520 views
int main() { int m=44; int *p=&m; int &r=m; int n=(*p)++; int *q=p-1; r= *(p)+1; ++*q; printf("m=%d n=%d r=%d",m,n,r); return 0; } Options:$m=44,\ n=46,\ r=45$$m=45,\ n=4...
0 0 votes
0 0 answers
2.3k
2.3k views
sripo asked Dec 6, 2018
2,251 views
What should my strategy be now as I have to cover OS,DLD,Maths,CN and CO along with revision and taking full length tests.I really don’t know what to do about aptitude. E...
1 1 vote
0 0 answers
2.6k
2.6k views
Krishna Sai Vootla asked Dec 29, 2018
2,586 views
Are the following topics necessary/ apt to study for gate.(Bold items are explicitly mentioned in gate syllabus document)ConnectivityMatchingColoringCutsCoveringIndepende...