List the different types of c tokens?
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
how can i include my own .h file EX:- alex.h like #include<alex.h>, rather than #include"alex.h"
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
multiple of 9 without useing +,* oprator
how to find binary of number?
which is an algorithm for sorting in a growing Lexicographic order
which is the best antivirus and how to update it
What are signals in C?
What are c header files?