What is the correct code to have following output in c using nested for loop?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that will read the input of any number of digits n in a row of shafh showing the breakdown of the printing and printing figures by the recursive function.
How can I access a memory located at certain address?
What is the difference between new and malloc functions?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
In C language what is a 'dangling pointer'?
Can you please compare array with pointer?
difference between c and c++
Is exit(status) truly equivalent to returning the same status from main?
What are linked lists in c?
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
How old is c programming language?