Explain how does flowchart help in writing a program?
Write a code to generate divisors of an integer?
What are reserved words?
Explain what is wrong with this program statement? Void = 10;
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
What does do in c?
What is FIFO?
Why the use of alloca() is discouraged?
write a program for the normal snake games find in most of the mobiles.
How many keywords are there in c?
What are the types of type specifiers?
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female