How many data structures are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
c program to arrange digits in a no in ascending and descending order
What is bss in c?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
explain what is fifo?
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
hi any body pls give me company name interview conduct "c" language only
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
do ne body have any idea about the salary for the we r going to have interview. yup .. u got it right ..i m talking abt NIC.
Is there a way to jump out of a function or functions?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?