int n=1;
while(1)
{
switch(n)
{
case 1:printf("a");
n++;
continue;
case 2:printf("b");
n++;
continue;
default : printf("c");
break;
}
break;
}
What is the difference between local variable and global variable in c?
Without Computer networks, Computers will be half the use. Comment.
How Many Header Files in c?
What is LINKED LIST? How can you access the last element in a linked list?
What is difference between structure and union in c programming?
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
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Program to write some contents into a file using file operations with proper error messages.
Write a program to generate prime factors of a given integer?
What is the sizeof () a pointer?
What 'lex' does?