What is sizeof in c?
No Answer is Posted For this Question
Be the First to Post Answer
differnce between do and do while
Table of Sudoku n*n
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
what is diffrence between string and character array?
What is your stream meaning?
Explain how do you sort filenames in a directory?
Write a C program to find the smallest of three integers, without using any of the comparision operators.
What are nested functions in c?
Why is struct padding needed?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }