What is bubble sort technique in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
Explain how do you declare an array that will hold more than 64kb of data?
Can we change the value of static variable in c?
What is undefined behavior?
52.write a “Hello World” program in “c” without using a semicolon? 53.Give a method to count the number of ones in a 32 bit number? 54.write a program that print itself even if the source file is deleted? 55.Given an unsigned integer, find if the number is power of 2?
25 Answers Datamatics, Solartis, TCS, ThinkBox, Trine,
1 232 34543 4567654 can anyone tell me how to slove this c question
how could explain about job profile
What is meant by gets in c?
What is dynamic variable in c?
which do you prefer C or Pascal?
Develop a program that computes the new price of an item. The program should receive a character variable colour and a double precision floating-point variable price from the user. Discount rate is determined based on the colour of the discount sticker, as shown in the following table. An error message should be printed if an invalid colour has been entered
What is meant by int fun const(int a, int b) { .... ... }