What is structure data type in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are different types of pointers?
Write a Program to find whether the given number or string is palindrome.
Not all reserved words are written in lowercase. TRUE or FALSE?
How can I do graphics in c?
What is advantage of pointer in c?
What is the difference between printf and scanf )?
What is the return type of sizeof?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Are bit fields portable?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Write a program in c to print * * * * * *******
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???